Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 4 additions & 13 deletions demo/anijs.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,10 @@
<body>
<div class="container-fluid">
<h1>AniJS demo</h1>

<div>
<a class="btn btn-default" id="add-widget" href="#">Add Widget</a>
</div>

<div>
<h4>Widget added</h4>
</div>

<br/>

<div class="grid-stack">
</div>
<button id="add-widget" href="#">Add Widget</button>
<h4>Widget added</h4>
<br>
<div class="grid-stack"></div>
</div>

<script src="https://cdnjs.cloudflare.com/ajax/libs/AniJS/0.9.3/anijs.js"></script>
Expand Down
14 changes: 4 additions & 10 deletions demo/float.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,9 @@
<body>
<div class="container-fluid">
<h1>Float grid demo</h1>

<div>
<a class="btn btn-default" id="add-new-widget" href="#">Add Widget</a>
</div>

<br/>

<div class="grid-stack">
</div>
<button id="add-widget" href="#">Add Widget</button>
<br><br>
<div class="grid-stack"></div>
</div>


Expand Down Expand Up @@ -79,7 +73,7 @@ <h1>Float grid demo</h1>
return false;
}.bind(this);

$('#add-new-widget').click(this.addNewWidget);
$('#add-widget').click(this.addNewWidget);
};
});
</script>
Expand Down
18 changes: 5 additions & 13 deletions demo/serialization.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,12 @@
<body>
<div class="container-fluid">
<h1>Serialization demo</h1>

<div>
<a class="btn btn-default" id="save-grid" href="#">Save Grid</a>
<a class="btn btn-default" id="load-grid" href="#">Load Grid</a>
<a class="btn btn-default" id="clear-grid" href="#">Clear Grid</a>
</div>

<br/>

<div class="grid-stack">
</div>

<button id="save-grid" href="#">Save Grid</button>
<button id="load-grid" href="#">Load Grid</button>
<button id="clear-grid" href="#">Clear Grid</button>
<br/><br/>
<div class="grid-stack"></div>
<hr/>

<textarea id="saved-data" cols="100" rows="20" readonly="readonly"></textarea>
</div>

Expand Down
Loading