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

Commit

Permalink
Add use strict back
Browse files Browse the repository at this point in the history
  • Loading branch information
wyuenho committed Jan 14, 2014
1 parent 773fde0 commit 84ed9b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module.exports = function (grunt) {
' }\n' +
' // Browser\n' +
' else factory(this, this._, this.Backbone);\n' +
'}(function (root, _, Backbone) {\n\n ',
'}(function (root, _, Backbone) {\n\n "use strict";\n\n',
footer: 'return Backgrid;\n' +
'}));'
},
Expand Down
4 changes: 3 additions & 1 deletion lib/backgrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
else factory(this, this._, this.Backbone);
}(function (root, _, Backbone) {

/*
"use strict";

/*
backgrid
http://github.com/wyuenho/backgrid
Expand Down

0 comments on commit 84ed9b3

Please sign in to comment.