Jquery draggable error -
i have forked example on jsfiddle has tabs on dialog box http://jsfiddle.net/didierg/dnyyq/ , made few changes.first,i added title bar, http://jsfiddle.net/wwdpd/1/ , set draggable true http://jsfiddle.net/wzf5y/2/
the final fiddle surprisingly works on jsfiddle http://jsfiddle.net/wzf5y/2/ when run example of browser ff 12.0,the dialog hidden above top div;that above open dialog button.
what missing?.
image:
it seems dialog (as overlay) being constrained div
id="force"
. firefox tries keep dimensions of div
small possible given size of child elements. thus, when try drag dialog, gets pushed inside force div
, since div
covers top of page. in other browsers, dimensions of force div
maximized, can drag dialog anywhere on page. can same behavior other browsers adding following css:
#force { height: 100%; width: 100%; }
Comments
Post a Comment