From 2170c06924b3a0dc1fef3b383d6a236e670dceea Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Thu, 15 Sep 2011 04:54:00 +0200 Subject: fix(specs): fix jQuery to jqLite binding on IE8 It appears that this whole time all IE8 unit tests ran only with jqLite. Due to a weird bug in IE[1], we never overwrote jqLite implementation with jQuery, so the tests ran with our jqLite instead. This affected only IE8 (and likely older) and only in unit testing mode. angular.js - the built artifact binds to jQuery just find. [1] https://plus.google.com/104744871076396904202/posts/Kqjuj6RSbbT --- test/jquery_alias.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/jquery_alias.js') diff --git a/test/jquery_alias.js b/test/jquery_alias.js index d9e1222b..ee4094f2 100644 --- a/test/jquery_alias.js +++ b/test/jquery_alias.js @@ -1,3 +1,4 @@ 'use strict'; -var _jQuery = jQuery; +var _jQuery = jQuery, + _jqLiteMode = false; -- cgit v1.2.3