do not show sourceError as element text

This commit is contained in:
vitalets
2012-12-07 13:40:43 +04:00
parent e1b6e263ea
commit 861f91975d
2 changed files with 6 additions and 1 deletions

@ -2,6 +2,11 @@ X-editable changelog
============================= =============================
Version 1.2.1 wip
----------------------------
[enh] select: do not show 'sourceError' in element during autotext execution (vitalets)
Version 1.2.0 Dec 6, 2012 Version 1.2.0 Dec 6, 2012
---------------------------- ----------------------------
[enh #36] 'submit' method: added 'ajaxOptions' property to modify ajax request (vitalets) [enh #36] 'submit' method: added 'ajaxOptions' property to modify ajax request (vitalets)

@ -45,7 +45,7 @@ List - abstract class for inputs that have source option loaded from js array or
} }
deferred.resolve(); deferred.resolve();
}, function () { }, function () {
List.superclass.value2html(this.options.sourceError, element); //do nothing with element
deferred.resolve(); deferred.resolve();
}); });