summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/backbone/js/models/todo.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/backbone/js/models/todo.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/backbone/js/models/todo.js b/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/backbone/js/models/todo.js
new file mode 100644
index 0000000000..4f3fde3e26
--- /dev/null
+++ b/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/backbone/js/models/todo.js
@@ -0,0 +1,26 @@
+/*global Backbone */
+var app = app || {};
+
+(function () {
+ 'use strict';
+
+ // Todo Model
+ // ----------
+
+ // Our basic **Todo** model has `title`, `order`, and `completed` attributes.
+ app.Todo = Backbone.Model.extend({
+ // Default attributes for the todo
+ // and ensure that each todo created has `title` and `completed` keys.
+ defaults: {
+ title: '',
+ completed: false
+ },
+
+ // Toggle the `completed` state of this todo item.
+ toggle: function () {
+ this.save({
+ completed: !this.get('completed')
+ });
+ }
+ });
+})();