@@ -32,20 +32,20 @@ let stopMeasure = function() {
3232 <div class="jumbotron">
3333 <div class="row">
3434 <div class="col-md-6">
35- <h1>Angular v2.0.0-rc5 </h1>
35+ <h1>Angular v2.0.0</h1>
3636 </div>
3737 <div class="col-md-6">
3838 <div class="col-sm-6 smallpad">
39- <button type="button" class="btn btn-primary btn-block" id="run" (click)="run($event )" ref="text">Create 1,000 rows</button>
39+ <button type="button" class="btn btn-primary btn-block" id="run" (click)="run()" ref="text">Create 1,000 rows</button>
4040 </div>
4141 <div class="col-sm-6 smallpad">
4242 <button type="button" class="btn btn-primary btn-block" id="runlots" (click)="runLots()">Create 10,000 rows</button>
4343 </div>
4444 <div class="col-sm-6 smallpad">
45- <button type="button" class="btn btn-primary btn-block" id="add" (click)="add($event )" ref="text">Append 1,000 rows</button>
45+ <button type="button" class="btn btn-primary btn-block" id="add" (click)="add()" ref="text">Append 1,000 rows</button>
4646 </div>
4747 <div class="col-sm-6 smallpad">
48- <button type="button" class="btn btn-primary btn-block" id="update" (click)="update($event )">Update every 10th row</button>
48+ <button type="button" class="btn btn-primary btn-block" id="update" (click)="update()">Update every 10th row</button>
4949 </div>
5050 <div class="col-sm-6 smallpad">
5151 <button type="button" class="btn btn-primary btn-block" id="clear" (click)="clear()">Clear</button>
@@ -118,17 +118,17 @@ export class App implements AfterViewChecked {
118118 }
119119 }
120120
121- run ( event : Event ) {
121+ run ( ) {
122122 startMeasure ( "run" ) ;
123123 this . data = this . buildData ( ) ;
124124 }
125125
126- add ( event : Event ) {
126+ add ( ) {
127127 startMeasure ( "add" ) ;
128128 this . data = this . data . concat ( this . buildData ( 1000 ) ) ;
129129 }
130130
131- update ( event : Event ) {
131+ update ( ) {
132132 startMeasure ( "update" ) ;
133133 for ( let i = 0 ; i < this . data . length ; i += 10 ) {
134134 this . data [ i ] . label += ' !!!' ;
0 commit comments