aboutsummaryrefslogtreecommitdiffstats
path: root/regression/ng_include_this.html
diff options
context:
space:
mode:
authorMisko Hevery2010-10-23 13:42:11 -0700
committerMisko Hevery2010-10-23 13:42:11 -0700
commitd74ef497defa77c92873b09b7b6f4e19ae175779 (patch)
tree377a3e264f9fc81bfd494fdd8f7c44c1cd36694d /regression/ng_include_this.html
parent6ddcf918610c1dd094a964fc03e129a67f17dfaa (diff)
downloadangular.js-d74ef497defa77c92873b09b7b6f4e19ae175779.tar.bz2
Fix for getting into recursive $eval on scope. Close #59
It sort of worked since the browser would throw stack too deep exception and the angular would then print the error to console. So as long as you did not have console open you would not notice this as an error.
Diffstat (limited to 'regression/ng_include_this.html')
-rw-r--r--regression/ng_include_this.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/regression/ng_include_this.html b/regression/ng_include_this.html
new file mode 100644
index 00000000..3138ed07
--- /dev/null
+++ b/regression/ng_include_this.html
@@ -0,0 +1,9 @@
+<!DOCTYPE HTML>
+<html xmlns:ng="http://angularjs.org">
+<head>
+ <script type="text/javascript" src="../src/angular-bootstrap.js" ng:autobind></script>
+</head>
+<body ng:init="$window.$root = this; data = [{foo: 'foo'},{bar: 'bar'}]">
+ <ng:include src="'ng_include_this.partial'" scope="this"/>
+</body>
+</html> \ No newline at end of file