Skip to content

Commit 57168b4

Browse files
author
Igor Escobar
committed
fixing use strict issue
1 parent a26fa50 commit 57168b4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.jshintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"quotmark": "single",
2828
"regexp": true,
2929
"smarttabs": true,
30-
"strict": true,
30+
"strict": false,
3131
"trailing": true,
3232
"undef": true,
3333
"unused": true

src/jquery.mask.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@
3535
/* jshint maxcomplexity:17 */
3636
/* global define */
3737

38-
'use strict';
39-
4038
// UMD (Universal Module Definition) patterns for JavaScript modules that work everywhere.
4139
// https://github.com/umdjs/umd/blob/master/templates/jqueryPlugin.js
4240
(function (factory, jQuery, Zepto) {
@@ -50,6 +48,7 @@
5048
}
5149

5250
}(function ($) {
51+
'use strict';
5352

5453
var Mask = function (el, mask, options) {
5554

0 commit comments

Comments
 (0)