Skip to content

Commit 62b04cb

Browse files
committed
Backbone Marionette cleanup. Closes tastejs#284
1 parent b7cc462 commit 62b04cb

File tree

9 files changed

+23
-2171
lines changed

9 files changed

+23
-2171
lines changed

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
todomvc.com
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#todoapp.filter-active #todo-list .completed,
2+
#todoapp.filter-completed #todo-list .active {
3+
display: none;
4+
}
5+
6+
#main,
7+
#footer {
8+
display: none;
9+
}

labs/architecture-examples/backbone_marionette/css/custom.css

-10
This file was deleted.

labs/architecture-examples/backbone_marionette/index.html

+2-16
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
66
<title>Marionette • TodoMVC</title>
77
<link rel="stylesheet" href="../../../assets/base.css">
8-
<link rel="stylesheet" href="css/custom.css">
8+
<link rel="stylesheet" href="css/app.css">
99
<!--[if IE]>
1010
<script src="../../../assets/ie.js"></script>
1111
<![endif]-->
@@ -25,7 +25,7 @@
2525
<!-- vendor libraries -->
2626
<script src="../../../assets/base.js"></script>
2727
<script src="../../../assets/jquery.min.js"></script>
28-
<script src="js/lib/underscore.js"></script>
28+
<script src="../../../assets/lodash.min.js"></script>
2929
<script src="js/lib/backbone.js"></script>
3030
<script src="js/lib/backbone-localStorage.js"></script>
3131
<script src="js/lib/backbone.marionette.js"></script>
@@ -79,19 +79,5 @@ <h1>todos</h1>
7979
<label for="toggle-all">Mark all as complete</label>
8080
<ul id="todo-list"></ul>
8181
</script>
82-
83-
<script>
84-
var _gaq = _gaq || [];
85-
_gaq.push(['_setAccount', 'UA-22728809-1']);
86-
_gaq.push(['_trackPageview']);
87-
(function () {
88-
var ga = document.createElement('script');
89-
ga.type = 'text/javascript';
90-
ga.async = true;
91-
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
92-
var s = document.getElementsByTagName('script')[0];
93-
s.parentNode.insertBefore(ga, s);
94-
})();
95-
</script>
9682
</body>
9783
</html>

0 commit comments

Comments
 (0)