(hoofbeats) Removes 'use strict' from the Ember app.
authorSalvatore Iovene <salvatore@iovene.com>
Tue, 5 Feb 2013 12:56:35 +0000 (14:56 +0200)
committerSalvatore Iovene <salvatore@iovene.com>
Tue, 5 Feb 2013 12:56:35 +0000 (14:56 +0200)
examples/hoofbeats/javascripts/app/controllers/applicationController.js
examples/hoofbeats/javascripts/app/controllers/artistsController.js
examples/hoofbeats/javascripts/app/models/artistModel.js
examples/hoofbeats/javascripts/app/router.js
examples/hoofbeats/javascripts/app/views/artistsView.js

index 634cbc2..75bb4ca 100644 (file)
@@ -1,6 +1,4 @@
 (function(app, Ember) {
-    'use strict';
-
     var ApplicationController = Ember.Controller.extend({});
 
     app.ApplicationController = ApplicationController;
index 2a6c008..cf7e6ac 100644 (file)
@@ -1,6 +1,4 @@
 (function(app, Ember, _) {
-    'use strict';
-
     var ArtistsController = Ember.ArrayController.extend({
         content: [],
     });
index 9c4a60d..a15f5e9 100644 (file)
@@ -1,6 +1,4 @@
 (function(app, Ember) {
-    'use strict';
-
     var Artist = Ember.Object.extend({
         id: null,
         firstName: null,
index 09525b3..67d9e3b 100644 (file)
@@ -1,7 +1,5 @@
 /* vi: set et sw=4 ts=4 si: */
 (function(app, Ember) {
-    'use strict';
-
     var Router = Ember.Router.extend({
         location: 'none',
 
index 5b857c7..83c2863 100644 (file)
@@ -1,7 +1,5 @@
 /* vi: set et sw=4 ts=4 si: */
 (function(app, Ember) {
-    'use strict';
-
     var ArtistsView = Ember.View.extend({
         templateName: 'artists',
         tagName: 'ul',