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

Jifty commits jifty-commit at lists.jifty.org
Wed Mar 26 19:17:50 EDT 2008


Author: sartak
Date: Wed Mar 26 19:17:50 2008
New Revision: 5238

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

Log:
fragments.get(parent) is now spelled fragments[parent]

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	Wed Mar 26 19:17:50 2008
@@ -933,7 +933,7 @@
             }
 
             // Make the region (for now)
-            new Region(name, f['args'], f['path'], f['parent'], f['parent'] ? fragments.get(f['parent']).in_form : null);
+            new Region(name, f['args'], f['path'], f['parent'], f['parent'] ? fragments[f['parent']].in_form : null);
         } else if ((f['path'] != null) && f['toggle'] && (f['path'] == fragments[name].path)) {
             // If they set the 'toggle' flag, and clicking wouldn't change the path
             jQuery(element).empty();


More information about the Jifty-commit mailing list