Skip to content

Commit 10d1f0a

Browse files
author
Robert Jackson
committed
Rename addon-initialization to slow-nodes (it is much more generic).
1 parent 344bc91 commit 10d1f0a

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

app/router.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const Router = Ember.Router.extend({
77
});
88

99
Router.map(function() {
10-
this.route('addon-initialization');
10+
this.route('slow-nodes');
1111
});
1212

1313
export default Router;
File renamed without changes.

app/templates/addon-initialization.hbs

Lines changed: 0 additions & 8 deletions
This file was deleted.

app/templates/application.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{link-to 'Addon Initialization' 'addon-initialization'}}
1+
{{link-to 'Slow Nodes' 'slow-nodes'}}
22

33
<hr>
44

app/templates/slow-nodes.hbs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<form>
2+
<div>
3+
<label for="file-upload">Upload the `instrumentation.*.json` output of <code>BROCCOLI_VIZ=1 ember build</code>:</label>
4+
<input name="file-upload" type="file" onchange={{action 'parseFile'}}>
5+
</div>
6+
</form>
7+
8+
{{slow-node-times data=data}}

0 commit comments

Comments
 (0)