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 });
});
}
});
......
......@@ -4,7 +4,7 @@
// TodoMVC is global for developing in the console
// and functional testing.
var App = Backbone.Marionette.Application.extend({
setRootLayout: function() {
setRootLayout: function () {
this.root = new TodoMVC.Layout.Root();
}
});
......
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