We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a26fa50 commit 57168b4Copy full SHA for 57168b4
.jshintrc
@@ -27,7 +27,7 @@
27
"quotmark": "single",
28
"regexp": true,
29
"smarttabs": true,
30
- "strict": true,
+ "strict": false,
31
"trailing": true,
32
"undef": true,
33
"unused": true
src/jquery.mask.js
@@ -35,8 +35,6 @@
35
/* jshint maxcomplexity:17 */
36
/* global define */
37
38
-'use strict';
39
-
40
// UMD (Universal Module Definition) patterns for JavaScript modules that work everywhere.
41
// https://github.com/umdjs/umd/blob/master/templates/jqueryPlugin.js
42
(function (factory, jQuery, Zepto) {
@@ -50,6 +48,7 @@
50
48
}
51
49
52
}(function ($) {
+ 'use strict';
53
54
var Mask = function (el, mask, options) {
55
0 commit comments