Commit 6f5dad67 authored by Peter Michaux's avatar Peter Michaux

the TodoMVC folks don't want to warn users with JavaScript disabled

parent cec047e7
......@@ -10,13 +10,6 @@
</head>
<body>
<noscript>
<p>This application uses JavaScript. Please enable JavaScript in your browser and refresh the page.</p>
</noscript>
<script>
document.write('<p id="loading">loading...</p>');
</script>
<script src="../lib/maria/maria.js"></script>
<script src="../lib/aristocrat/aristocrat.js"></script>
<script src="../../../../assets/director.min.js"></script>
......
......@@ -2,9 +2,6 @@
/*global maria, Router, checkit */
maria.on(window, 'load', function() {
var loading = document.getElementById('loading');
loading.parentNode.removeChild(loading);
var model;
if ((typeof localStorage === 'object') && (typeof JSON === 'object')) {
var store = localStorage.getItem('todos-maria');
......
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