diff options
| author | Misko Hevery | 2010-01-28 20:44:34 -0800 |
|---|---|---|
| committer | Misko Hevery | 2010-01-28 20:44:34 -0800 |
| commit | 3d99e0f6dee6569ca9471d419bda79aec95b9ebc (patch) | |
| tree | 8afd70b773b9131aeacef7f7d24b92857aa205c4 /src | |
| parent | 473e57e22532f9b85fc9dcc1bcc53e12a10154c2 (diff) | |
| download | angular.js-3d99e0f6dee6569ca9471d419bda79aec95b9ebc.tar.bz2 | |
work
Diffstat (limited to 'src')
| -rw-r--r-- | src/Angular.js | 1 | ||||
| -rw-r--r-- | src/Formaters.js | 6 | ||||
| -rw-r--r-- | src/Scope.js | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/src/Angular.js b/src/Angular.js index bfbe8ee9..b208d0ec 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -26,6 +26,7 @@ var consoleNode, jQuery, msie, angular = window['angular'] || (window['angular'] = {}), angularValidator = angular['validator'] || (angular['validator'] = {}), angularFilter = angular['filter'] || (angular['filter'] = {}), + angularFormater = angular['formater'] || (angular['formater'] = {}), angularCallbacks = angular['callbacks'] || (angular['callbacks'] = {}), angularAlert = angular['alert'] || (angular['alert'] = function(){ log(arguments); window.alert.apply(window, arguments); diff --git a/src/Formaters.js b/src/Formaters.js new file mode 100644 index 00000000..e623d6b8 --- /dev/null +++ b/src/Formaters.js @@ -0,0 +1,6 @@ + +extend(angularFormater, { + 'noop':function(){ + + } +}); diff --git a/src/Scope.js b/src/Scope.js index 7e477ec5..b8fadfa0 100644 --- a/src/Scope.js +++ b/src/Scope.js @@ -95,7 +95,7 @@ Scope.prototype = { }, eval: function(expressionText, context) { - log('Scope.eval', expressionText); +// log('Scope.eval', expressionText); var expression = Scope.expressionCache[expressionText]; if (!expression) { var parser = new Parser(expressionText); |
