Commit 00dcae17 authored by callmehiphop's avatar callmehiphop

Updated enyo/backbone example to not kill the sidebar

parent 3aab99f3
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en" data-framework="enyo">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Enyo & Backbone.js • TodoMVC</title> <title>Enyo & Backbone.js • TodoMVC</title>
<link rel="stylesheet" href="bower_components/todomvc-common/base.css"> <link rel="stylesheet" href="bower_components/todomvc-common/base.css">
</head> </head>
<body class="enyo-unselectable"> <body>
<!-- Enyo comes with a build and deploy process that will minify and concatenate your files into 2 js files. One for enyo, and one for app code. For the purpose of demonstration, I used the debug loading library to handle the dependency management. The loader nagivates directories for package.js files and injects files they list into the DOM. --> <div id="todo-container" class="enyo-unselectable">
<script src="bower_components/todomvc-common/base.js"></script> <!-- Enyo comes with a build and deploy process that will minify and concatenate your files into 2 js files. One for enyo, and one for app code. For the purpose of demonstration, I used the debug loading library to handle the dependency management. The loader nagivates directories for package.js files and injects files they list into the DOM. -->
<script src="enyo/enyo.js"></script> <script src="bower_components/todomvc-common/base.js"></script>
<script src="js/package.js"></script> <script src="enyo/enyo.js"></script>
<script src="js/package.js"></script>
</div>
</body> </body>
</html> </html>
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
/*global enyo:false, ToDo:false */ /*global enyo:false, ToDo:false */
// Once everything is loaded through enyo's dependency management, start the app // Once everything is loaded through enyo's dependency management, start the app
enyo.ready(function () { enyo.ready(function () {
var container = document.getElementById('todo-container');
window.app = new ToDo.Application(); window.app = new ToDo.Application();
window.app.render(); // add extra container to prevent enyo from blowing out the learn side bar
window.app.renderInto(container);
}); });
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment