Browse Source

fix issue 251 - setvalue disable strict

Robin Herbots 12 years ago
parent
commit
7c6a9198be

+ 1 - 1
build.properties

@@ -7,7 +7,7 @@ distdir = dist
 
 build.major = 2
 build.minor = 2
-build.revision = 26
+build.revision = 27
 
 target = jquery.inputmask.bundle.js
 target.min = jquery.inputmask.bundle.min.js

BIN
dist/jQuery.InputMask.2.2.26.nupkg


BIN
dist/jQuery.InputMask.2.2.27.nupkg


+ 6 - 6
dist/jquery.inputmask.bundle.js

@@ -3,7 +3,7 @@
 * http://github.com/RobinHerbots/jquery.inputmask
 * Copyright (c) 2010 - 2013 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 2.2.26
+* Version: 2.2.27
 */
 
 (function ($) {
@@ -895,7 +895,7 @@
                 }).bind('setvalue.inputmask', function () {
                     var input = this;
                     getActiveMaskSet()["undoBuffer"] = input._valueGet();
-                    checkVal(input, true, true);
+                    checkVal(input, true);
                     if (input._valueGet() == getActiveBufferTemplate().join(''))
                         input._valueSet('');
                 }).bind('complete.inputmask', opts.oncomplete)
@@ -1437,7 +1437,7 @@ Input Mask plugin extensions
 http://github.com/RobinHerbots/jquery.inputmask
 Copyright (c) 2010 - 2013 Robin Herbots
 Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-Version: 2.2.26
+Version: 2.2.27
 
 Optional extensions on the jquery.inputmask base
 */
@@ -1534,7 +1534,7 @@ Input Mask plugin extensions
 http://github.com/RobinHerbots/jquery.inputmask
 Copyright (c) 2010 - 2012 Robin Herbots
 Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-Version: 2.2.26
+Version: 2.2.27
 
 Optional extensions on the jquery.inputmask base
 */
@@ -2027,7 +2027,7 @@ Input Mask plugin extensions
 http://github.com/RobinHerbots/jquery.inputmask
 Copyright (c) 2010 - 2013 Robin Herbots
 Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-Version: 2.2.26
+Version: 2.2.27
 
 Optional extensions on the jquery.inputmask base
 */
@@ -2186,7 +2186,7 @@ Input Mask plugin extensions
 http://github.com/RobinHerbots/jquery.inputmask
 Copyright (c) 2010 - 2013 Robin Herbots
 Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-Version: 2.2.26
+Version: 2.2.27
 
 Regex extensions on the jquery.inputmask base
 Allows for using regular expressions as a mask

File diff suppressed because it is too large
+ 2 - 2
dist/jquery.inputmask.bundle.min.js


File diff suppressed because it is too large
+ 2 - 2
dist/min/jquery.inputmask.js


+ 1 - 1
jquery.inputmask.jquery.json

@@ -8,7 +8,7 @@
 		"inputmask",
 		"mask"
     ],
-    "version": "2.2.26",
+    "version": "2.2.27",
     "author": {
         "name": "Robin Herbots",
         "url": "http://github.com/RobinHerbots/jquery.inputmask"

+ 1 - 1
js/jquery.inputmask.js

@@ -895,7 +895,7 @@
                 }).bind('setvalue.inputmask', function () {
                     var input = this;
                     getActiveMaskSet()["undoBuffer"] = input._valueGet();
-                    checkVal(input, true, true);
+                    checkVal(input, true);
                     if (input._valueGet() == getActiveBufferTemplate().join(''))
                         input._valueSet('');
                 }).bind('complete.inputmask', opts.oncomplete)