From cc604b6e26e22c04ef64f077fd3177bbf60533f2 Mon Sep 17 00:00:00 2001 From: Misko Hevery Date: Fri, 12 Aug 2011 08:47:18 -0700 Subject: fix(bootstrap): missing var failed strict mode boot --- src/angular-bootstrap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/angular-bootstrap.js b/src/angular-bootstrap.js index 59a6f7ff..9c95a158 100644 --- a/src/angular-bootstrap.js +++ b/src/angular-bootstrap.js @@ -76,7 +76,7 @@ // load the js scripts for (i in Array.prototype.slice.call(arguments, 0)) { - file = arguments[i]; + var file = arguments[i]; document.write(''); } -- cgit v1.2.3