|
|
@@ -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.3.8
|
|
|
+* Version: 2.3.9
|
|
|
*/
|
|
|
|
|
|
(function ($) {
|
|
|
@@ -145,8 +145,14 @@
|
|
|
input.__defineSetter__("value", input._valueSet);
|
|
|
}
|
|
|
}
|
|
|
- delete input._valueGet;
|
|
|
- delete input._valueSet;
|
|
|
+ try { //try catch needed for IE7 as it does not supports deleting fns
|
|
|
+ delete input._valueGet;
|
|
|
+ delete input._valueSet;
|
|
|
+ } catch (e) {
|
|
|
+ input._valueGet = undefined;
|
|
|
+ input._valueSet = undefined;
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
});
|
|
|
break;
|
|
|
@@ -1506,7 +1512,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.3.8
|
|
|
+Version: 2.3.9
|
|
|
|
|
|
Optional extensions on the jquery.inputmask base
|
|
|
*/
|
|
|
@@ -1608,7 +1614,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.3.8
|
|
|
+Version: 2.3.9
|
|
|
|
|
|
Optional extensions on the jquery.inputmask base
|
|
|
*/
|
|
|
@@ -2085,7 +2091,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.3.8
|
|
|
+Version: 2.3.9
|
|
|
|
|
|
Optional extensions on the jquery.inputmask base
|
|
|
*/
|
|
|
@@ -2252,7 +2258,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.3.8
|
|
|
+Version: 2.3.9
|
|
|
|
|
|
Regex extensions on the jquery.inputmask base
|
|
|
Allows for using regular expressions as a mask
|