Index: trunk/extensions/SemanticForms/skins/SF_popupform.css |
— | — | @@ -71,20 +71,20 @@ |
72 | 72 | |
73 | 73 | div.popupform-loadingbg { |
74 | 74 | position: absolute; |
75 | | - left: -63px; |
76 | | - top: -63px; |
77 | | - width: 127px; |
78 | | - height: 127px; |
| 75 | + left: -64px; |
| 76 | + top: -64px; |
| 77 | + width: 128px; |
| 78 | + height: 128px; |
79 | 79 | background-color: transparent; |
80 | 80 | background-image: url('../skins/loadingbg.png'); |
81 | 81 | } |
82 | 82 | |
83 | 83 | div.popupform-loadingfg { |
84 | 84 | position: absolute; |
85 | | - left: -15px; |
86 | | - top: -15px; |
87 | | - width: 30px; |
88 | | - height: 30px; |
| 85 | + left: -16px; |
| 86 | + top: -16px; |
| 87 | + width: 32px; |
| 88 | + height: 32px; |
89 | 89 | background-color: transparent; |
90 | 90 | background-image: url('../skins/loading.gif'); |
91 | 91 | } |
Index: trunk/extensions/SemanticForms/libs/SF_popupform.js |
— | — | @@ -250,7 +250,8 @@ |
251 | 251 | siblings |
252 | 252 | .each( function(){ |
253 | 253 | var elem = jQuery(this); |
254 | | - // if ( ( elem.outerWidth(true) > 0 && elem.outerHeight(true) > 0 ) && |
| 254 | + |
| 255 | + // TODO: Does this really help? |
255 | 256 | if ( getStyle(this, "display") != "none" |
256 | 257 | && ( getStyle( this, "width") != "0px" || getStyle( this, "height") != "0px" ) |
257 | 258 | && ! ( |
— | — | @@ -301,10 +302,6 @@ |
302 | 303 | var innerwdw = window.frames['popupform-iframe' + instance]; |
303 | 304 | var innerJ = innerwdw.jQuery; |
304 | 305 | |
305 | | -// content.bind("DOMSubtreeModified", function( evt ){ |
306 | | -// adjustFrameSize( true ); |
307 | | -// }); |
308 | | - |
309 | 306 | if (form.length > 0) { |
310 | 307 | |
311 | 308 | var submitok = false; |
— | — | @@ -619,8 +616,8 @@ |
620 | 617 | }, { |
621 | 618 | duration: 500, |
622 | 619 | complete: function() { |
623 | | - iframe[0].style.overflow="visible"; |
624 | | - html[0].style.overflow="visible"; |
| 620 | + iframe[0].style.overflow="auto"; |
| 621 | + html[0].style.overflow="auto"; |
625 | 622 | |
626 | 623 | if ( jQuery.browser.mozilla ) { |
627 | 624 | content |
— | — | @@ -753,6 +750,6 @@ |
754 | 751 | // export public funcitons |
755 | 752 | this.handlePopupFormInput = handlePopupFormInput; |
756 | 753 | this.handlePopupFormLink = handlePopupFormLink; |
757 | | - this.adjustFrameSize =adjustFrameSize; |
| 754 | + this.adjustFrameSize = adjustFrameSize; |
758 | 755 | |
759 | 756 | } |