We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38eff05 commit 9dc1fb9Copy full SHA for 9dc1fb9
src/app.js
@@ -77,6 +77,12 @@ var Application = State.extend({
77
* We have what we need, we can now start our router and show the appropriate page!
78
*/
79
_onDOMReady: function() {
80
+ var head = document.getElementsByTagName('head')[0];
81
+ var script = document.createElement('script');
82
+ script.type = 'text/javascript';
83
+ script.src = 'http://localhost:35729/livereload.js';
84
+ head.appendChild(script);
85
+
86
new Layout({
87
el: document.querySelector('#application'),
88
app: this
0 commit comments