Modify ↓
Ticket #1825 (closed bug: fixed)
dialog - draggable title bar appears outside of clicable window
| Reported by: | ThrushAAX | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | 1.2.2 |
| Component: | ui | Version: | 1.2.1 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
problem: If the height of a dialog box is larger than the height of the browser window the dialog box will still center vertically causing the dragable title bar and close box to be above the viewable window space and inaccessible.
solution: Limit the top position of a dialog box to 0. Browser windows scrol downwards, not upwards.
Potential code fix within the this.open function in ui.dialog.js would be to add around line 124:
if( top < 0)
top = 0;
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Fixed in rev3725