-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
493 additions
and
268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 50 additions & 4 deletions
54
benchmark/benchmarks/krausest/lib/components/Application.hbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,52 @@ | ||
<div class="container"> | ||
<table class="table table-hover table-striped test-data"><tbody> | ||
{{#each @items as |item|}}<Row @select={{this.select}} @item={{item}} />{{/each}} | ||
</tbody></table> | ||
<span className="preloadicon glyphicon glyphicon-remove" aria-hidden="true"></span> | ||
<div class="jumbotron"> | ||
<div class="row"> | ||
<div class="col-md-6"> | ||
<h1>Glimmer-VM</h1> | ||
</div> | ||
<div class="col-md-6"> | ||
<div class="row"> | ||
<div class="col-sm-6 smallpad"> | ||
<BsButton id="run" {{on "click" this.create}}> | ||
Create 1,000 rows | ||
</BsButton> | ||
</div> | ||
<div class="col-sm-6 smallpad"> | ||
<BsButton id="runlots" {{on "click" this.runLots}}> | ||
Create 10,000 rows | ||
</BsButton> | ||
</div> | ||
<div class="col-sm-6 smallpad"> | ||
<BsButton id="add" {{on "click" this.add}}> | ||
Append 1,000 rows | ||
</BsButton> | ||
</div> | ||
<div class="col-sm-6 smallpad"> | ||
<BsButton id="update" {{on "click" this.update}}> | ||
Update every 10th row | ||
</BsButton> | ||
</div> | ||
<div class="col-sm-6 smallpad"> | ||
<BsButton id="clear" {{on "click" this.clear}}> | ||
Clear | ||
</BsButton> | ||
</div> | ||
<div class="col-sm-6 smallpad"> | ||
<BsButton id="swaprows" {{on "click" this.swapRows}}> | ||
Swap Rows | ||
</BsButton> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<table class="table table-hover table-striped test-data"> | ||
<tbody> | ||
{{#each this.items as |item|}} | ||
<Row @select={{this.select}} @remove={{this.remove}} @item={{item}} /> | ||
{{/each}} | ||
</tbody> | ||
</table> | ||
<span class="preloadicon glyphicon glyphicon-remove" aria-hidden="true"></span> | ||
</div> |
23 changes: 0 additions & 23 deletions
23
benchmark/benchmarks/krausest/lib/components/Application.js
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.