aboutsummaryrefslogtreecommitdiffstats
path: root/src/Validators.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/Validators.js')
-rw-r--r--src/Validators.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Validators.js b/src/Validators.js
index cdff5e1a..662145c0 100644
--- a/src/Validators.js
+++ b/src/Validators.js
@@ -91,12 +91,12 @@ foreach({
obj[lastKey] = text;
if (state === undefined) {
// we have never seen this before, Request it
- jQuery(obj).addClass('ng-input-indicator-wait');
+ jqLite(obj).addClass('ng-input-indicator-wait');
state = stateCache[text] = null;
asynchronousFn(text, function(error){
state = stateCache[text] = error ? error : false;
if (stateCache[obj[lastKey]] !== null) {
- jQuery(obj).removeClass('ng-input-indicator-wait');
+ jqLite(obj).removeClass('ng-input-indicator-wait');
}
updateView();
});