Skip to content
This repository was archived by the owner on Apr 2, 2019. It is now read-only.

Commit 84ed9b3

Browse files
committed
Add use strict back
1 parent 773fde0 commit 84ed9b3

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ module.exports = function (grunt) {
5151
' }\n' +
5252
' // Browser\n' +
5353
' else factory(this, this._, this.Backbone);\n' +
54-
'}(function (root, _, Backbone) {\n\n ',
54+
'}(function (root, _, Backbone) {\n\n "use strict";\n\n',
5555
footer: 'return Backgrid;\n' +
5656
'}));'
5757
},

lib/backgrid.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
else factory(this, this._, this.Backbone);
1919
}(function (root, _, Backbone) {
2020

21-
/*
21+
"use strict";
22+
23+
/*
2224
backgrid
2325
http://github.com/wyuenho/backgrid
2426

0 commit comments

Comments
 (0)