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

Jifty commits jifty-commit at lists.jifty.org
Fri Apr 18 12:56:56 EDT 2008


Author: hlb
Date: Fri Apr 18 12:56:55 2008
New Revision: 5327

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

Log:
pass the right arguments into autocompleter


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	Fri Apr 18 12:56:55 2008
@@ -1431,7 +1431,8 @@
 
 Jifty.Autocompleter = function() {
     var that = this;
-    jQuery(function () { that.initialize.apply(that, arguments) } );
+    var args = arguments;
+    jQuery(function () { that.initialize.apply(that, args) } );
     return this;
 };
 


More information about the Jifty-commit mailing list