|
|
@@ -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.22
|
|
|
+* Version: 2.2.23
|
|
|
*/
|
|
|
|
|
|
(function ($) {
|
|
|
@@ -819,6 +819,12 @@
|
|
|
if (!isComplete(buffer)) {
|
|
|
$input.trigger("incomplete");
|
|
|
if (opts.clearIncomplete) {
|
|
|
+ $.each(masksets, function (ndx, ms) {
|
|
|
+ ms["buffer"] = ms["_buffer"].slice();
|
|
|
+ ms["lastValidPosition"] = undefined;
|
|
|
+ ms["p"] = isRTL ? getMaskLength() : 0;
|
|
|
+ });
|
|
|
+ activeMasksetIndex = 0;
|
|
|
if (opts.clearMaskOnLostFocus)
|
|
|
input._valueSet('');
|
|
|
else {
|
|
|
@@ -1439,7 +1445,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.22
|
|
|
+Version: 2.2.23
|
|
|
|
|
|
Optional extensions on the jquery.inputmask base
|
|
|
*/
|
|
|
@@ -1536,7 +1542,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.22
|
|
|
+Version: 2.2.23
|
|
|
|
|
|
Optional extensions on the jquery.inputmask base
|
|
|
*/
|
|
|
@@ -2029,7 +2035,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.22
|
|
|
+Version: 2.2.23
|
|
|
|
|
|
Optional extensions on the jquery.inputmask base
|
|
|
*/
|
|
|
@@ -2204,7 +2210,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.22
|
|
|
+Version: 2.2.23
|
|
|
|
|
|
Regex extensions on the jquery.inputmask base
|
|
|
Allows for using regular expressions as a mask
|