Bug Tracker

Opened 16 years ago

Closed 16 years ago

#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:
Blocked by: Blocking:

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 (1)

comment:1 Changed 16 years ago by rworth

Resolution: fixed
Status: newclosed

Fixed in rev3725

Note: See TracTickets for help on using tickets.