Disable seralizing of passwords and actionButtons

This commit is contained in:
Winston Chang
2016-05-12 17:03:25 -05:00
parent bb4ce2f978
commit 6fd626a3ec
7 changed files with 37 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
var textInputBinding = new InputBinding();
$.extend(textInputBinding, {
find: function(scope) {
return $(scope).find('input[type="text"], input[type="password"], input[type="search"], input[type="url"], input[type="email"]');
return $(scope).find('input[type="text"], input[type="search"], input[type="url"], input[type="email"]');
},
getId: function(el) {
return InputBinding.prototype.getId.call(this, el) || el.name;