Author: knopp
Date: Tue Dec 11 15:20:17 2007
New Revision: 603410
URL: http://svn.apache.org/viewvc?rev=603410&view=rev
Log:
safari performance improvements
Modified:
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/wicket-event.js
Modified:
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/wicket-event.js
URL:
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/wicket-event.js?rev=603410&r1=603409&r2=603410&view=diff
==============================================================================
---
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/wicket-event.js
(original)
+++
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/wicket-event.js
Tue Dec 11 15:20:17 2007
@@ -52,11 +52,11 @@
},
isOpera: function() {
- return typeof(window.opera) != "undefined";
+ return !Wicket.Browser.isSafari() && typeof(window.opera) !=
"undefined";
},
isIE: function() {
- return typeof(document.all) != "undefined" &&
typeof(window.opera) == "undefined";
+ return !Wicket.Browser.isSafari() && typeof(document.all) !=
"undefined" && typeof(window.opera) == "undefined";
},
isIEQuirks: function() {