summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/vanilla-examples/vanillajs/js/app.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/vanilla-examples/vanillajs/js/app.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/vanilla-examples/vanillajs/js/app.js b/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/vanilla-examples/vanillajs/js/app.js
new file mode 100644
index 0000000000..301cf9feae
--- /dev/null
+++ b/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/vanilla-examples/vanillajs/js/app.js
@@ -0,0 +1,25 @@
+/*global app, $on */
+(function () {
+ 'use strict';
+
+ /**
+ * Sets up a brand new Todo list.
+ *
+ * @param {string} name The name of your new to do list.
+ */
+ function Todo(name) {
+ this.storage = new app.Store(name);
+ this.model = new app.Model(this.storage);
+ this.template = new app.Template();
+ this.view = new app.View(this.template);
+ this.controller = new app.Controller(this.model, this.view);
+ }
+
+ var todo = new Todo('todos-vanillajs');
+
+ function setView() {
+ todo.controller.setView(document.location.hash);
+ }
+ $on(window, 'load', setView);
+ $on(window, 'hashchange', setView);
+})();