From a3f1a34d3b997550a5a8cf4c630e6580cd37cde5 Mon Sep 17 00:00:00 2001 From: Scott González Date: Wed, 10 Oct 2012 11:45:48 -0400 Subject: Remove use of $.browser; add $.ui.ie and $.ui.ie6 temporarily. --- tests/jquery.simulate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/jquery.simulate.js') diff --git a/tests/jquery.simulate.js b/tests/jquery.simulate.js index e281e2fee..790c88c27 100644 --- a/tests/jquery.simulate.js +++ b/tests/jquery.simulate.js @@ -148,7 +148,7 @@ $.extend( $.simulate.prototype, { } // TODO: can we hook into core's logic? - if ( $.browser.msie || $.browser.opera ) { + if ( $.ui.ie || (({}).toString.call( window.opera ) === "[object Opera]") ) { // TODO: is charCode ever <0 ? Can we just use charCode || keyCode? event.keyCode = (options.charCode > 0) ? options.charCode : options.keyCode; event.charCode = undefined; -- cgit v1.2.3