aboutsummaryrefslogtreecommitdiffstats
path: root/src/markups.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/markups.js')
-rw-r--r--src/markups.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/markups.js b/src/markups.js
index 454f22c2..16ca9ba8 100644
--- a/src/markups.js
+++ b/src/markups.js
@@ -35,7 +35,7 @@ angularTextMarkup('{{}}', function(text, textNode, parentElement) {
parentElement.attr('ng:bind-template', text);
} else {
var cursor = textNode, newElement;
- foreach(parseBindings(text), function(text){
+ forEach(parseBindings(text), function(text){
var exp = binding(text);
if (exp) {
newElement = self.element('span');