[Jifty-commit] r4704 - jifty/branches/jquery/share/web/static/js

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Sat Dec 15 07:17:33 EST 2007


Author: gugod
Date: Sat Dec 15 07:17:29 2007
New Revision: 4704

Modified:
   jifty/branches/jquery/share/web/static/js/jifty.js

Log:
Although I have no proof, this is a nice replacement to replace $H()
with what we have in jQuery.


Modified: jifty/branches/jquery/share/web/static/js/jifty.js
==============================================================================
--- jifty/branches/jquery/share/web/static/js/jifty.js	(original)
+++ jifty/branches/jquery/share/web/static/js/jifty.js	Sat Dec 15 07:17:29 2007
@@ -343,7 +343,7 @@
         if (!this.s_a) {
             /* XXX: make REST client accessible */
             var Todo = new AsynapseRecord('todo');
-            this.s_a = $H(Todo.eval_ajax_get('/=/action/'+this.actionClass+'.js'));
+            this.s_a = jQuery.extend({}, Todo.eval_ajax_get('/=/action/'+this.actionClass+'.js'));
         }
 
         return this.s_a


More information about the Jifty-commit mailing list