Skip to content

Commit d6565f1

Browse files
committed
Merge branch 'update-targetjs' of https://github.com/wasfi2/js-framework-benchmark into wasfi2-update-targetjs
2 parents 1f021cf + a30ba87 commit d6565f1

File tree

6 files changed

+2324
-0
lines changed

6 files changed

+2324
-0
lines changed

frameworks/keyed/targetjs/index.html

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>TargetJS</title>
6+
<link href="/css/currentStyle.css" rel="stylesheet"/>
7+
<script src='dist/main.js'></script>
8+
</head>
9+
<body>
10+
<div id="main">
11+
<div class="container">
12+
<div class="jumbotron">
13+
<div class="row">
14+
<div class="col-md-6">
15+
<h1>TargetJS-"keyed"</h1>
16+
</div>
17+
<div class="col-md-6">
18+
<div class="row">
19+
<div class="col-sm-6 smallpad">
20+
<button
21+
type="button"
22+
class="btn btn-primary btn-block"
23+
id="run"
24+
>
25+
Create 1,000 rows
26+
</button>
27+
</div>
28+
<div class="col-sm-6 smallpad">
29+
<button
30+
type="button"
31+
class="btn btn-primary btn-block"
32+
id="runlots"
33+
>
34+
Create 10,000 rows
35+
</button>
36+
</div>
37+
<div class="col-sm-6 smallpad">
38+
<button
39+
type="button"
40+
class="btn btn-primary btn-block"
41+
id="add"
42+
>
43+
Append 1,000 rows
44+
</button>
45+
</div>
46+
<div class="col-sm-6 smallpad">
47+
<button
48+
type="button"
49+
class="btn btn-primary btn-block"
50+
id="update"
51+
>
52+
Update every 10th row
53+
</button>
54+
</div>
55+
<div class="col-sm-6 smallpad">
56+
<button
57+
type="button"
58+
class="btn btn-primary btn-block"
59+
id="clear"
60+
>
61+
Clear
62+
</button>
63+
</div>
64+
<div class="col-sm-6 smallpad">
65+
<button
66+
type="button"
67+
class="btn btn-primary btn-block"
68+
id="swaprows"
69+
>
70+
Swap Rows
71+
</button>
72+
</div>
73+
</div>
74+
</div>
75+
</div>
76+
</div>
77+
<table class="table table-hover table-striped test-data">
78+
<tbody id="rows"></tbody>
79+
</table>
80+
<span class="preloadicon glyphicon glyphicon-remove" aria-hidden="true"></span>
81+
</div>
82+
</div>
83+
</body>
84+
</html>

0 commit comments

Comments
 (0)