aboutsummaryrefslogtreecommitdiffstats
path: root/src/Validators.js
diff options
context:
space:
mode:
authorMisko Hevery2010-03-29 20:25:42 -0700
committerMisko Hevery2010-03-29 20:25:42 -0700
commite55c97debaa0ef8487ece219b6eadbc147ece1f9 (patch)
tree5895b2151d639efa5fcdb09d396990d6e089c886 /src/Validators.js
parentc655b884e268c8c9b6853d440143953f51b7e7de (diff)
downloadangular.js-e55c97debaa0ef8487ece219b6eadbc147ece1f9.tar.bz2
dissabled a lot of tests, and made the core test set pass.
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();
});