Author: artdaw
Date: 2011-03-11 06:07:30 -0500 (Fri, 11 Mar 2011)
New Revision: 22156
Modified:
branches/4.0.X/ui/output/ui/src/main/resources/META-INF/resources/org.richfaces/popupPanel.js
Log:
RF-10221: RichFaces.ui.PopupPanel.showPopupPanel and
RichFaces.ui.PopupPanel.hidePopupPanel are fixed. Verified by Anton Belevich.
Modified:
branches/4.0.X/ui/output/ui/src/main/resources/META-INF/resources/org.richfaces/popupPanel.js
===================================================================
---
branches/4.0.X/ui/output/ui/src/main/resources/META-INF/resources/org.richfaces/popupPanel.js 2011-03-11
09:40:16 UTC (rev 22155)
+++
branches/4.0.X/ui/output/ui/src/main/resources/META-INF/resources/org.richfaces/popupPanel.js 2011-03-11
11:07:30 UTC (rev 22156)
@@ -749,11 +749,11 @@
$.extend(richfaces.ui.PopupPanel, {
showPopupPanel : function (id, opts, event) {
- richfaces.Event.ready(richfaces.$(id).show());
+ richfaces.Event.ready(function(){richfaces.$(id).show()});
},
hidePopupPanel : function (id, opts, event) {
- richfaces.Event.ready(richfaces.$(id).hide());
+ richfaces.Event.ready(function(){richfaces.$(id).hide()});
}
});
Show replies by date