Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Dialog: Removed $.ui.dialog.topMostDialog - added for performance ↵ | Scott González | 2009-02-19 | 1 | -4/+1 |
| | | | | improvement, but not needed and could cause problems. | ||||
* | Dialog: Refactored event delegation to cancel events for modal dialogs. ↵ | Scott González | 2009-02-19 | 1 | -20/+5 |
| | | | | Fixes #2807 - dialogUI + modal mode = slow. | ||||
* | Dialog: Use event delegation to cancel events for modal dialogs. Fixes ↵ | Scott González | 2009-02-19 | 1 | -2/+2 |
| | | | | #2807 - dialogUI + modal mode = slow. | ||||
* | Dialog: Refactored moveToTop, greatly improving performance for opening ↵ | Scott González | 2009-02-19 | 1 | -8/+11 |
| | | | | dialogs in IE. Partial fix for #2807 - dialog UI + modal mode = slow. | ||||
* | Dialog: Don't set focus to elements in the titlebar on open. Fixes #4126 - ↵ | Scott González | 2009-02-13 | 1 | -5/+3 |
| | | | | | | focus on dialog open should be constrained to the contents of the dialog. NOTE: This breaks accessibility in Safari, which doesn't allow setting focus to elements that are not natively tabbable. However, our current stance is that people who require accessibility will not be using Safari specifically for this type of reason. | ||||
* | dialog: added some missing defaults | Richard Worth | 2009-02-09 | 1 | -0/+4 |
| | |||||
* | Dialog: Don't allow the height of the content area to be negative. | Scott González | 2009-02-09 | 1 | -1/+1 |
| | |||||
* | Dialog: Fixed #4086: Allow changing the dialogClass option after init. | Scott González | 2009-02-07 | 1 | -18/+23 |
| | |||||
* | Dialog: Removed shadow option due to introducing too many bugs. (Reopens #3681). | Scott González | 2009-02-05 | 1 | -38/+0 |
| | |||||
* | Fixed #4050 (Dialog: undefined class being added to ui-dialog element) | Richard Worth | 2009-02-03 | 1 | -0/+1 |
| | |||||
* | Dialog: Fixed #4015: Set z-index on shadow when the dialog opens. | Scott González | 2009-02-01 | 1 | -2/+1 |
| | |||||
* | dialog: changed shadow default to false. Not quite ready to be on by ↵ | Richard Worth | 2009-01-31 | 1 | -1/+1 |
| | | | | default. Maybe in 1.next. | ||||
* | Dialog: Shadow cleanup. | Scott González | 2009-01-31 | 1 | -17/+14 |
| | | | | | | | | | | | | | | | - Don't hide shadow during drag/resize in IE6 (let the user do this one their own). - Let users modify the shadow option after init. .parents('.ui-dialog') .bind('dragstart resizestart', function() { $(this).find('.ui-dialog-content').dialog('option', 'shadow', false); }) .bind('dragstop resizestop', function() { $(this).find('.ui-dialog-content').dialog('option', 'shadow', true); }); | ||||
* | dialog: all triggered custom events should have related events attached if ↵ | Paul Bakaus | 2009-01-29 | 1 | -17/+17 |
| | | | | possible (fixes #3718,#3983) | ||||
* | dialog: shadow is hidden during drag/resize for slow performance browsers ↵ | Paul Bakaus | 2009-01-29 | 1 | -3/+11 |
| | | | | (currently IE < 7) (fixes #3966) | ||||
* | Dialog: Fixed #3901, #3918, #3930: Don't let the minHeight for dialogs be ↵ | Scott González | 2009-01-29 | 1 | -1/+1 |
| | | | | negative (breaks IE). | ||||
* | dialog: | Paul Bakaus | 2009-01-27 | 1 | -5/+36 |
| | | | | | - implemented themeroller overlay, removes option overlay (now handled through CSS) (implements #3681) - implemented shadow option (boolean), if set to true, adds shadow from css framework (implements #3681) | ||||
* | Dialog: Don't override title option on init. | Scott González | 2009-01-20 | 1 | -2/+2 |
| | |||||
* | Dialog: Fixed #3688: Don't add the button pane div if there are no buttons. | Scott González | 2009-01-17 | 1 | -14/+12 |
| | |||||
* | Dialog: Giving the content area and button pane priority over the title bar ↵ | Scott González | 2009-01-17 | 1 | -6/+19 |
| | | | | for which element should gain focus on open. | ||||
* | Revert changes for #3838 for the release 1.6rc5 | Eduardo Lundgren | 2009-01-16 | 1 | -10/+3 |
| | |||||
* | Fix for #3838 - Components should use this.widgetName on internally | Eduardo Lundgren | 2009-01-16 | 1 | -3/+10 |
| | |||||
* | Dialog: Removed Opera-specific dimension code (not needed with jQuery 1.3). | Scott González | 2009-01-14 | 1 | -16/+2 |
| | |||||
* | Dialog: Fixed #3813: Ensure the content is visible during init. | Scott González | 2009-01-14 | 1 | -0/+1 |
| | |||||
* | Happy New Year | Richard Worth | 2009-01-03 | 1 | -1/+1 |
| | |||||
* | Dialog: Fixed #3756: Wrong height on every other open. | Scott González | 2009-01-03 | 1 | -0/+1 |
| | |||||
* | Dialog: Fixed #3753: Cleaned ui hash in callbacks. | Scott González | 2009-01-03 | 1 | -5/+5 |
| | |||||
* | Dialog: Fixed #3731: Contain dialogs within the document when dragging. | Scott González | 2009-01-03 | 1 | -0/+1 |
| | |||||
* | Dialog: Fixed #3713: Set default height to auto and default minHeight to ↵ | Scott González | 2008-12-31 | 1 | -6/+9 |
| | | | | 150. Now applying minHeight to the content div instead of only using it for resizing. | ||||
* | Resizable: Partial fix for supporting jQuery objects in alsoResize. | Scott González | 2008-12-23 | 1 | -1/+1 |
| | | | | Dialog: Fixed bug with content resizing. | ||||
* | Dialog: Removed unnecessary call to moveToTop in drag start. | Scott González | 2008-12-23 | 1 | -1/+0 |
| | |||||
* | Dialog: Move to top on mousedown instead of mouseup. | Scott González | 2008-12-23 | 1 | -4/+1 |
| | |||||
* | Dialog: Passing in a DOMElement instead of a jQuery object for alsoResize to ↵ | Scott González | 2008-12-23 | 1 | -1/+1 |
| | | | | avoid resizable bug. | ||||
* | Dialog: Setting the correct element for alsoResize. | Scott González | 2008-12-23 | 1 | -1/+1 |
| | |||||
* | Dialog: Added hover and focus states to all buttons. | Scott González | 2008-12-21 | 1 | -2/+22 |
| | |||||
* | Dialog: Fixed #3145: Added support for height: 'auto'. | Scott González | 2008-12-21 | 1 | -8/+12 |
| | |||||
* | Dialog: Fixed #3221: User outerWidth/Height for positioning. | Scott González | 2008-12-19 | 1 | -4/+4 |
| | |||||
* | Dialog: Fixed #3564: Proper positioning in Opera. | Scott González | 2008-12-19 | 1 | -2/+4 |
| | |||||
* | Dialog: Fixed #3648: Use new CSS framework. | Scott González | 2008-12-19 | 1 | -63/+56 |
| | | | | | - Removed .ui-dialog-container div. - Removed autoResize option. | ||||
* | Dialog: Partial fix for #3648: Added resizable grip. | Scott González | 2008-12-19 | 1 | -1/+2 |
| | |||||
* | Dialog: Partial fix for #3648: Setting proper class on hover of close button. | Scott González | 2008-12-18 | 1 | -2/+2 |
| | |||||
* | Fixed #3655 - $.keyCode should be $.ui.keyCode | Richard Worth | 2008-12-14 | 1 | -3/+3 |
| | |||||
* | Dialog: Fixed #3664: Dialog fails to init on removed elements. | Scott González | 2008-12-13 | 1 | -1/+1 |
| | |||||
* | corrected some invalid html <div/> to <div></div> | Richard Worth | 2008-12-13 | 1 | -5/+5 |
| | |||||
* | Dialog: Remove ui-widget-content class on destroy. | Scott González | 2008-12-11 | 1 | -1/+1 |
| | |||||
* | Dialog: Fixed variable re-declaration. | Scott González | 2008-12-11 | 1 | -18/+16 |
| | |||||
* | Dialog: Partial fix for #3648: Use new CSS framework. | Scott González | 2008-12-11 | 1 | -5/+32 |
| | |||||
* | Dialog: Fixed #3638: Added closeText option (default 'close'). | Scott González | 2008-12-11 | 1 | -1/+5 |
| | |||||
* | Dialog: Fixed #3637: Added role of button to close link. | Scott González | 2008-12-06 | 1 | -1/+9 |
| | |||||
* | dialog: formatting changes | Richard Worth | 2008-11-21 | 1 | -0/+3 |
| |