Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
fix(ngEventDirectives): parse expression only once during compile phase.
Browse files Browse the repository at this point in the history
  • Loading branch information
tbosch committed Oct 31, 2013
1 parent 3d6a89e commit 9a82873
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions src/ng/directive/ngEventDirs.js
Expand Up @@ -41,13 +41,17 @@ forEach(
function(name) {
var directiveName = directiveNormalize('ng-' + name);
ngEventDirectives[directiveName] = ['$parse', function($parse) {
return function(scope, element, attr) {
var fn = $parse(attr[directiveName]);
element.on(lowercase(name), function(event) {
scope.$apply(function() {
fn(scope, {$event:event});
});
});
return {
compile: function($element, attr) {
var fn = $parse(attr[directiveName]);
return function(scope, element, attr) {
element.on(lowercase(name), function(event) {
scope.$apply(function() {
fn(scope, {$event:event});
});
});
};
}
};
}];
}
Expand Down

0 comments on commit 9a82873

Please sign in to comment.