[Jifty-commit] r5133 - jifty/trunk/share/web/static/js

Jifty commits jifty-commit at lists.jifty.org
Tue Feb 19 08:05:47 EST 2008


Author: audreyt
Date: Tue Feb 19 08:05:46 2008
New Revision: 5133

Modified:
   jifty/trunk/share/web/static/js/jifty.js

Log:
* It turns out that the keyDown navigation fix in Autocompleter
  applies to MSIE, not only MSIE7.
  Reported by: Stephen Lee

Modified: jifty/trunk/share/web/static/js/jifty.js
==============================================================================
--- jifty/trunk/share/web/static/js/jifty.js	(original)
+++ jifty/trunk/share/web/static/js/jifty.js	Tue Feb 19 08:05:46 2008
@@ -1378,7 +1378,7 @@
         afterUpdateElement: this.afterUpdate
     });
 
-    if ((document.all)&&(navigator.appVersion.indexOf("MSIE 7.")!=-1)) {
+    if ((document.all)&&(navigator.appVersion.indexOf("MSIE")!=-1)) {
         Event.observe(this.element, "keydown", this.onKeyPress.bindAsEventListener(this));
     }
   },


More information about the Jifty-commit mailing list