[limb-svn] r6018 - 3.x/trunk/limb/js/shared/js/limb
svn at limb-project.com
svn at limb-project.com
Wed Jun 27 16:24:39 MSD 2007
Author: tony
Date: 2007-06-27 16:24:39 +0400 (Wed, 27 Jun 2007)
New Revision: 6018
URL: http://fisheye.limb-project.com/changelog/limb/?cs=6018
Modified:
3.x/trunk/limb/js/shared/js/limb/forms.js
Log:
-- Limb.Form.submit fixed for opera
Modified: 3.x/trunk/limb/js/shared/js/limb/forms.js
===================================================================
--- 3.x/trunk/limb/js/shared/js/limb/forms.js 2007-06-27 08:19:09 UTC (rev 6017)
+++ 3.x/trunk/limb/js/shared/js/limb/forms.js 2007-06-27 12:24:39 UTC (rev 6018)
@@ -56,13 +56,13 @@
iframe.src = '';
iframe.style.display = 'none';
+ form.appendChild(iframe);
+ form.target = iframe_id;
+
jQuery(iframe).bind('load', function(){
window.location.reload();
});
- form.appendChild(iframe);
- form.target = iframe_id;
-
if(form_action)
form.action = form_action;
More information about the limb-svn
mailing list