aboutsummaryrefslogtreecommitdiffstats
path: root/src/directives.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/directives.js')
-rw-r--r--src/directives.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/directives.js b/src/directives.js
index ee88e2a5..daa42048 100644
--- a/src/directives.js
+++ b/src/directives.js
@@ -236,7 +236,7 @@ angularDirective("ng:controller", function(expression){
angularDirective("ng:bind", function(expression, element){
element.addClass('ng-binding');
var exprFn = parser(expression).statements();
- return function(element) {
+ return ['$exceptionHandler', '$element', function($exceptionHandler, element) {
var lastValue = Number.NaN;
this.$watch(function(scope) {
// TODO(misko): remove error handling https://github.com/angular/angular.js/issues/347
@@ -269,7 +269,7 @@ angularDirective("ng:bind", function(expression, element){
}
}
} catch (e) {
- scope.$service('$exceptionHandler')(e);
+ $exceptionHandler(e);
} finally {
if (hadOwnElement) {
scope.$element = oldElement;
@@ -278,7 +278,7 @@ angularDirective("ng:bind", function(expression, element){
}
}
});
- };
+ }];
});
var bindTemplateCache = {};