aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.dialog.js
Commit message (Collapse)AuthorAgeFilesLines
* Dialog: Only bind focus-trapping event once. Fixes #8551 - After repeated ↵Scott González2012-09-041-22/+19
| | | | opening and closing of a modal dialog, focus navigation using tab becomes slow.
* Simplify licensing.Scott González2012-08-091-1/+1
|
* Dialog: Prevent tabbing out of modal dialog. Partial fix for #7862 - Dialog: ↵Lee Rowlands2012-07-051-1/+1
| | | | modal accessibility.
* Update copyright to jQuery Foundation.Scott González2012-07-041-1/+2
|
* Widget: Added _off() for removing event handlers. Fixes #7795 - Widget: _on ↵Scott González2012-06-141-3/+3
| | | | and _off.
* Dialog: Use new uniqueId method for generating id'skborchers2012-05-291-6/+6
|
* Dialog: Only create the button pane once and store a reference to it. Fixes ↵Scott González2012-05-221-11/+13
| | | | #8343 - _createButtons removes all elements with .ui-dialog-buttonpane class.
* Dialog: Remove uses of self var; use that var.Scott González2012-05-091-94/+91
|
* Dialog: Removed trailing whitespace.Scott González2012-05-071-6/+6
|
* Dialog: Handle escape for all overlays. Fixes #8300 - Dialog: Incorrect ↵Jay Merrifield2012-05-071-11/+15
| | | | behavior for ESCAPE with multiple modal dialogs.
* Remove trailing whitespace.Scott González2012-04-181-7/+7
|
* Lint fixes.Scott González2012-04-021-21/+24
|
* Protect all copyright notices against minificationJo Liss2012-04-021-1/+1
| | | | | | | For instance, this is useful for the jquery-ui-rails gem, which does not use jQuery UI's own minification, but relies on Rails to minify the files where necessary. Rails in turn uses UglifyJS for JS and YUI for CSS, both of which respect the /*! ... */ convention.
* Updated copyright year.Scott González2012-03-081-1/+1
|
* Dialog: When destroy is called place the element back in original DOM ↵Alberto Monteiro2011-12-151-3/+14
| | | | position. Fixed #4980 - Dialog: Destroy should place element back in original DOM position
* Dialog: Modified the dialog._size() to use outerHeight in calculating the ↵James Khoury2011-11-281-1/+1
| | | | nonContentHeight. Fixed #7692 - dialog: dialog height bug is incorrect when .ui-dialog padding set.
* Widget: Remove method argument from _super and _superApply. Was a left-over ↵Jörn Zaefferer2011-11-181-8/+8
| | | | from first implementation, not necessary anymore.
* Widget: Added window and document properties. Fixes #7801 - Widget: Add ↵Scott González2011-10-201-4/+3
| | | | document and window properties.
* Dialog: fix small memory leak when having lot's of instances. Fixes #7793 - ↵Florian Gutmann2011-10-141-6/+5
| | | | Small memory leak in ui dialog.
* Dialog: Update to 96e5c24 - keyup apparently doesn't work like I thought it ↵Corey Frang2011-08-201-1/+1
| | | | would everywhere, switching back to keydown.
* Dialog: Tabbing out of a modal dialog was possible because keypress doesn't ↵Corey Frang2011-08-191-1/+1
| | | | fire for tabs everywhere, switched to keyup. Added Unit Test - Caught by @DomenicDenicola - Fixes #3123 - Tabbing stops in modal dialog
* Merge branch 'master' into core-1.6.1Scott González2011-07-251-3/+2
|\ | | | | | | | | | | | | | | | | Conflicts: demos/menubar/default.html tests/unit/autocomplete/autocomplete.html tests/visual/effects/effects.all.html ui/jquery.ui.menu.js ui/jquery.ui.popup.js
| * Dialog: Append the dialog to the body early to make sure styles from the ↵Scott González2011-07-121-3/+2
| | | | | | | | classes get applied.
* | .attr() -> .prop()Scott González2011-06-081-2/+2
|/
* All: Moved version numbers into prototypes. Fixed #7436 - Widget: Store ↵Scott González2011-05-281-2/+1
| | | | version numbers on instances.
* Dialog: Removed the height() tinkering which stops the dialog from ↵Jay Merrifield2011-05-261-6/+2
| | | | shrinking. Fixes #5916 - Dialog: shrinks on drag in IE in standards mode, worse in quirksmode.
* Dialog: Make close() a noop if the dialog is already closed. Fixes #7327 - ↵David Murdoch2011-05-261-2/+6
| | | | Dialog box size and close animation bugs.
* Merge remote branch 'kborchers/bug_3623'Jörn Zaefferer2011-05-181-2/+2
|\
| * Dialog: Changed IE6 overlay width adjustment to apply to all IE versions. ↵kborchers2011-05-121-2/+2
| | | | | | | | Fixed #3623 - Opening a Modal Dialog shows a horizontal scroll bar
* | Dialog: Reduce old overlay dimensions to 0x0 to avoid sizing issues. Fixes ↵Scott González2011-05-181-1/+1
| | | | | | | | #5637 - Dialog: Dimensions of reused overlay may cause scrollbars.
* | Dialog: Create modal overlay after dialog is shown and check scrollHeight ↵kborchers2011-05-121-3/+3
|/ | | | and offsetHeight in all IE versions. Fixed #4995 - Modal Dialog's overlay dissapears in IE when content is tall
* Dialog: 'NO-BREAK SPACE' (U+00A0) is not 'SPACE' (U+0020).Kato Kazuyoshi2011-05-071-1/+1
|
* Dialog: remove unneeded DOM manipulations. Fixed #7258 - optimize ↵Adam Baratz2011-05-021-13/+19
| | | | initialization.
* Dialog: Before handling escape key presses, check if the default action has ↵Jay Merrifield2011-03-081-2/+2
| | | | been prevented. Fixes #6966 - Pressing ESC on dialog when 2 dialogs are open closes both dialogs.
* Dialog: Added a class to dialog wrapper when it is currently displaying ↵Douglas Neiner2011-03-031-0/+3
| | | | buttons, includes unit tests for changes. Fixed #7057 - An extra class is needed on the dialog wrapper to specify when a buttonset is showing
* Dialog: Use ._focusable() and ._hoverable().Scott González2011-01-241-14/+2
|
* Updated copyright year.Scott González2011-01-171-1/+1
|
* Updated widgets to use new methods from $.Widget.Scott González2011-01-151-1/+1
|
* Change destroy to _destroy and remove calls to $.Widget.prototype.destroy in ↵Scott González2011-01-141-4/+1
| | | | widgets with simple destroy methods.
* Dialog: Fixed creation of close button in IE.Scott González2011-01-111-1/+1
| | | | Thanks dkiselev.
* Dialog: Modified close button binding to use event.preventDefault() instead ↵Max Schnur2010-12-201-1/+1
| | | | of return false. Fixes #6766 - Dialog: Clicks on close button don't bubble.
* Dialog: Coding standards.Scott González2010-12-171-277/+276
|
* All: Remove workaround for .offset() setter bug from older versions of jQuery.Scott González2010-12-111-4/+1
|
* Dialog: Removed handling of deprecated beforeclose option. Fixes #5100 - ↵Scott González2010-12-101-13/+0
| | | | Dialog: remove deprecated dialog option beforeclose.
* Revert "Dialog: Moved the default value for the position.of option inside ↵Scott González2010-12-101-1/+2
| | | | | | the _position() method to avoid a bug in jQuery 1.3.2. Fixes #6030 - ui.dialog with jQuery 1.3.2 causes RangeError." This reverts commit 22671ad4f8e3e2e921c27bd2933fa088950abf2f.
* Dialog: Moved the default value for the position.of option inside the ↵Scott González2010-12-081-2/+1
| | | | | | _position() method to avoid a bug in jQuery 1.3.2. Fixes #6030 - ui.dialog with jQuery 1.3.2 causes RangeError. This should be reverted in jQuery UI 1.9.
* Dialog: Don't hide the dialog in _size if it started visible. Fixes #6717 - ↵Scott González2010-12-031-2/+5
| | | | Dialog: Adding a button makes the dialog disappear in IE6.
* Dialog: Ensure dialogs have a z-index when calculating the max z-index. ↵jamiejag2010-11-191-2/+5
| | | | Fixex #5955 - Dialog: Closing UI dialog when z-index is not defined in any .ui-dialog class, causes NaN to be used as Z-index, throwing an error. Fixes #4652 - Dialog: Event loss in subsequent dialog calls (FF3).
* Dialog: Added some missing semicolons.Scott González2010-11-121-2/+2
|
* Dialog: Make sure the overlay instance still exists before trying to remove ↵Jay Merrifield2010-11-121-1/+4
| | | | it. Fixes #6645 - Dialog: Missing element not found check in overlay code.