Commit e40dcb03 authored by Sam Saccone's avatar Sam Saccone

Fix jscs warnings on Marionette

parent 6eb745d2
......@@ -39,8 +39,8 @@ TodoMVC.module('Layout', function (Layout, App, Backbone) {
},
onInputKeypress: function (e) {
var ENTER_KEY = 13,
todoText = this.ui.input.val().trim();
var ENTER_KEY = 13;
var todoText = this.ui.input.val().trim();
if (e.which === ENTER_KEY && todoText) {
this.collection.create({
......@@ -72,7 +72,7 @@ TodoMVC.module('Layout', function (Layout, App, Backbone) {
},
collectionEvents: {
'all': 'render'
all: 'render'
},
templateHelpers: {
......
......@@ -27,7 +27,7 @@ TodoMVC.module('TodoList.Views', function (Views, App, Backbone, Marionette) {
},
modelEvents: {
'change': 'render'
change: 'render'
},
onRender: function () {
......@@ -65,7 +65,8 @@ TodoMVC.module('TodoList.Views', function (Views, App, Backbone, Marionette) {
},
onEditKeypress: function (e) {
var ENTER_KEY = 13, ESC_KEY = 27;
var ENTER_KEY = 13;
var ESC_KEY = 27;
if (e.which === ENTER_KEY) {
this.onEditFocusout();
......@@ -132,7 +133,7 @@ TodoMVC.module('TodoList.Views', function (Views, App, Backbone, Marionette) {
var isChecked = e.currentTarget.checked;
this.collection.each(function (todo) {
todo.save({ 'completed': isChecked });
todo.save({ completed: isChecked });
});
}
});
......
......@@ -17,10 +17,10 @@ TodoMVC.module('TodoList', function (TodoList, App, Backbone, Marionette) {
//
// Control the workflow and logic that exists at the application
// level, above the implementation detail of views and models
TodoList.Controller = Marionette.Controller.extend({
initialize: function () {
this.todoList = new App.Todos.TodoList();
},
TodoList.Controller = Marionette.Controller.extend({
initialize: function () {
this.todoList = new App.Todos.TodoList();
},
// Start the app by showing the appropriate views
// and fetching the list of todo items, if there are any
start: function () {
......
......@@ -4,23 +4,23 @@
// TodoMVC is global for developing in the console
// and functional testing.
var App = Backbone.Marionette.Application.extend({
setRootLayout: function() {
this.root = new TodoMVC.Layout.Root();
}
setRootLayout: function () {
this.root = new TodoMVC.Layout.Root();
}
});
window.TodoMVC = new App();
(function () {
var filterState = new Backbone.Model({
filter: 'all'
});
var filterState = new Backbone.Model({
filter: 'all'
});
TodoMVC.reqres.setHandler('filterState', function () {
return filterState;
});
TodoMVC.reqres.setHandler('filterState', function () {
return filterState;
});
})();
TodoMVC.on('before:start', function () {
TodoMVC.setRootLayout();
TodoMVC.setRootLayout();
});
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