diff options
| author | Misko Hevery | 2010-02-12 19:39:01 -0800 |
|---|---|---|
| committer | Misko Hevery | 2010-02-12 19:39:01 -0800 |
| commit | 3f9a2ab9bdfcd12cb7df74b0d38cecf2ee4ac94a (patch) | |
| tree | ac3e6197c742a0771350fe8e15c8d53b85d447c3 /src/Parser.js | |
| parent | 7c8a2ccb8d7b595419dfbe9151928cd2533550e3 (diff) | |
| download | angular.js-3f9a2ab9bdfcd12cb7df74b0d38cecf2ee4ac94a.tar.bz2 | |
added asynchronous validator
Diffstat (limited to 'src/Parser.js')
| -rw-r--r-- | src/Parser.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Parser.js b/src/Parser.js index 3aa644ac..b59b21a7 100644 --- a/src/Parser.js +++ b/src/Parser.js @@ -349,11 +349,11 @@ Parser.prototype = { }, filter: function(){ - return this._pipeFunction(angular['filter']); + return this._pipeFunction(angularFilter); }, validator: function(){ - return this._pipeFunction(angular['validator']); + return this._pipeFunction(angularValidator); }, _pipeFunction: function(fnScope){ |
