|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8" /> |
| 5 | + <title>Zune-keyed</title> |
| 6 | + <link href="/css/currentStyle.css" rel="stylesheet" /> |
| 7 | + </head> |
| 8 | + <body> |
| 9 | + <div class="container" id="main"> |
| 10 | + <div class="jumbotron"> |
| 11 | + <div class="row"> |
| 12 | + <div class="col-md-6"> |
| 13 | + <h1>Zune-keyed</h1> |
| 14 | + </div> |
| 15 | + <div class="col-md-6"> |
| 16 | + <div class="row"> |
| 17 | + <div class="col-sm-6 smallpad"> |
| 18 | + <button type="button" class="btn btn-primary btn-block" id="run" data-click="bench: 'run'">Create 1,000 rows</button> |
| 19 | + </div> |
| 20 | + <div class="col-sm-6 smallpad"> |
| 21 | + <button type="button" class="btn btn-primary btn-block" id="runlots" data-click="bench: 'runLots'">Create 10,000 rows</button> |
| 22 | + </div> |
| 23 | + <div class="col-sm-6 smallpad"> |
| 24 | + <button type="button" class="btn btn-primary btn-block" id="add" data-click="bench: 'add'">Append 1,000 rows</button> |
| 25 | + </div> |
| 26 | + <div class="col-sm-6 smallpad"> |
| 27 | + <button type="button" class="btn btn-primary btn-block" id="update" data-click="bench: 'update'">Update every 10th row</button> |
| 28 | + </div> |
| 29 | + <div class="col-sm-6 smallpad"> |
| 30 | + <button type="button" class="btn btn-primary btn-block" id="clear" data-click="bench: 'clear'">Clear</button> |
| 31 | + </div> |
| 32 | + <div class="col-sm-6 smallpad"> |
| 33 | + <button type="button" class="btn btn-primary btn-block" id="swaprows" data-click="bench: 'swapRows'">Swap Rows</button> |
| 34 | + </div> |
| 35 | + </div> |
| 36 | + </div> |
| 37 | + </div> |
| 38 | + </div> |
| 39 | + <table class="table table-hover table-striped test-data"> |
| 40 | + <tbody data-tpl="bench"></tbody> |
| 41 | + </table> |
| 42 | + <span class="preloadicon glyphicon glyphicon-remove" aria-hidden="true"></span> |
| 43 | + <template data-name="bench"> |
| 44 | + <tr> |
| 45 | + <td class="col-md-1">${id}</td> |
| 46 | + <td class="col-md-4"><a data-click="bench: 'select'">${label}</a></td> |
| 47 | + <td class="col-md-1"><a data-click="bench: 'remove'"><span class="glyphicon glyphicon-remove" aria-hidden="true" /></a></td> |
| 48 | + <td class="col-md-6"></td> |
| 49 | + </tr> |
| 50 | + </template> |
| 51 | + </div> |
| 52 | + <script type="module"> |
| 53 | + (await import('./dist/core/main.js')).default(); |
| 54 | + </script> |
| 55 | + </body> |
| 56 | +</html> |
0 commit comments