aboutsummaryrefslogtreecommitdiffstats
path: root/src/Compiler.js
diff options
context:
space:
mode:
authorIgor Minar2011-01-04 11:53:23 -0800
committerIgor Minar2011-01-04 18:04:00 -0800
commitb2631f61709ae71bb29ec6f1353f2a3c1ad33cd3 (patch)
tree4c955af5f726d29e2d6004d39403d0843f37711e /src/Compiler.js
parent1430c6d6b1f4edf11b1bd877e8907ac8ab0be923 (diff)
downloadangular.js-b2631f61709ae71bb29ec6f1353f2a3c1ad33cd3.tar.bz2
rename scope.$inject to scope.$service
see changelog diff for more info
Diffstat (limited to 'src/Compiler.js')
-rw-r--r--src/Compiler.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Compiler.js b/src/Compiler.js
index a98bd502..5a841a25 100644
--- a/src/Compiler.js
+++ b/src/Compiler.js
@@ -35,7 +35,7 @@ Template.prototype = {
foreach(this.inits, function(fn) {
queue.push(function() {
childScope.$tryEval(function(){
- return childScope.$inject(fn, childScope, element);
+ return childScope.$service(fn, childScope, element);
}, element);
});
});