Use strict everywhere

This commit is contained in:
Borys Levytskyi
2015-04-04 19:27:52 +03:00
parent ba284789ba
commit f14425da75
20 changed files with 50 additions and 31 deletions

View File

@@ -1,4 +1,5 @@
(function(app, core){
"use strict";
var should = core.should;

View File

@@ -1,4 +1,5 @@
(function(app, core) {
"use strict";
var should = core.should;

View File

@@ -1,4 +1,5 @@
(function(app) {
"use strict";
function Template(html) {
this.html = html;

View File

@@ -1,4 +1,6 @@
(function(app, is){
"use strict";
app.modelView = function (modelCtor, builder) {
var name = getKey(modelCtor);
app.di.register(name, builder);