aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/dialog/dialog_options.js
Commit message (Collapse)AuthorAgeFilesLines
* Dialog: Check for empty array in addition to empty object when checking if ↵Scott González2013-02-011-0/+10
| | | | there are buttons. Fixes #9043 - Dialog: Buttonpane shown with no buttons when modifying native prototypes.
* Dialog Tests: Cleanup el -> elementKris Borchers2013-01-301-194/+194
|
* Dialog: Move call to _focusTabbable and triggering of open and focus events ↵Kris Borchers2013-01-301-0/+40
| | | | into the _show callback. Fixes #6756 - Dialog: show: "blind" with link in content doesn't animate properly. Fixes #8051 - Dialog: 'Explode' dialog animation causes crash in IE 6, 7 and 8. Fixes #4421 - Dialog: Focus lost from dialog which uses show-effect
* Dialog: modified _createOverlay to _appendTo instead of document.body. Fixed ↵David Sullivan2013-01-261-8/+28
| | | | #8984 - Modal dialogs display behind overlay when using appendTo option
* Tests: Convert single quotes to double quotes.Mike Sherov2012-12-261-123/+123
|
* Dialog Tests: Fix test fails due to window measurements in FF and IE7Mike Sherov2012-12-221-33/+44
|
* Dev: Remove *_tickets.js test files and move the associated tests to the ↵Mike Sherov2012-12-071-0/+22
| | | | proper locations.
* Dialog: Added appendTo option. Fixes #7948 - Dialog: Allow dialog to be ↵Scott González2012-12-071-0/+41
| | | | attached to a element other than body.
* Dialog: Ensure all animations finish and clean up themselve when destroying ↵Jörn Zaefferer2012-11-301-0/+9
| | | | dialog. Fixes #5860 - Dialog: Destroying a dialog during animated close leaves .ui-effects-wrapper in DOM.
* Dialog: Follow-up to 9fe3a62d8 - also deprecate string notation for position ↵Jörn Zaefferer2012-11-261-32/+0
| | | | option.
* Dialog: Move array notation support for position option to backCompat check. ↵Jörn Zaefferer2012-11-261-20/+0
| | | | Fixes #8824 - Deprecate array notation for position option.
* Dialog: Pass through icons and showText (as 'text') options to button. Fixes ↵Jörn Zaefferer2012-11-261-2/+8
| | | | #6830 - Allow Icons to be specified for Dialog buttons.
* Dialog: Refactor _setOption to call _super early. Move dialogClass update ↵Jörn Zaefferer2012-11-261-1/+4
| | | | above that to access old option value.
* Dialog: Use button widget for close button (was already listed as dependency)Jörn Zaefferer2012-11-261-4/+4
|
* Dialog: Remove attroperty workaround for title attribute. Make the default ↵Jörn Zaefferer2012-11-261-17/+25
| | | | null, as it should be. No back-compat, as the behaviour doesn't change.
* Dialog tests: Work around inconsistent handling of non-breaking spaces in ↵Scott González2012-11-151-2/+2
| | | | IE7/8 with jQuery <1.8.
* Dev: clean up dialog test suite with new helper methods. Fixes #8803 - Dev: ↵Mike Sherov2012-11-091-57/+62
| | | | re-enable the dialog test suite
* Dev: remove globals from tests and moved test helpers to correct location - ↵Mike Sherov2012-11-031-93/+96
| | | | Fixed #8770 Dev: Remove globals and Standardize Test Suite
* Build: Enable "unused" option in jshint - Remove unused variables from ↵Mike Sherov2012-10-231-15/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | codebase. - Closes gh-788 Squashed commit of the following: commit 7f19f92c646f180bc067bb24123175251a64a9d6 Author: Mike Sherov <mike.sherov@gmail.com> Date: Tue Oct 23 10:34:28 2012 -0400 put back in fake args for signatures that we want to keep commit 257505a9e69da0c53e3a989dab87a13112045a29 Author: Mike Sherov <mike.sherov@gmail.com> Date: Tue Oct 23 08:10:20 2012 -0400 changes per @scott_gonzalez commit 12725480cb58e70865e5aa6e735009b6b035c8f3 Author: Mike Sherov <mike.sherov@gmail.com> Date: Mon Oct 22 22:54:05 2012 -0400 clean up unused vars in ui directory commit 563595e7aee5d4a5c096b2d1de655abdf920aacd Author: Mike Sherov <mike.sherov@gmail.com> Date: Mon Oct 22 22:37:42 2012 -0400 clean up unused vars in grunt and tests
* Tests: Enable QUnit.config.requireExpects.Scott González2012-06-271-0/+9
|
* Tests: Lint.Scott González2012-04-191-47/+47
|
* Update to QUnit 1.3. Replace usage of same with deepEqual and equals with equal.Jörn Zaefferer2012-02-291-77/+77
|
* Dialog: Modified the dialog._size() to use outerHeight in calculating the ↵James Khoury2011-11-281-4/+9
| | | | nonContentHeight. Fixed #7692 - dialog: dialog height bug is incorrect when .ui-dialog padding set.
* Tests: Cleanup.Scott González2011-08-031-2/+2
|
* Widget: define a null default for the create callback.Scott González2011-04-251-2/+2
|
* Dialog: Added a class to dialog wrapper when it is currently displaying ↵Douglas Neiner2011-03-031-1/+9
| | | | 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 position tests: Use Math.round() instead of Math.floor().Scott González2010-12-031-4/+4
|
* Dialog tests: Enabling in TestSwarm.Scott González2010-09-071-8/+0
|
* Dialog: Fixed test for default title. Some browsers were returning an actual ↵Scott González2010-09-071-1/+3
| | | | non-breaking space and some were returning the string "&nbsp;".
* Dialog: Reduced size of dialogs in height/width tests.Scott González2010-09-071-16/+16
|
* Dialog: Fixed a broken maxHeight test.Scott González2010-09-021-1/+1
| | | | The size tests are fragile because they require the browser window to be large enough to contain the dialog.
* Dialog: Added additional syntax for creating buttons. Fixes #4344 - Dialog: ↵Scott González2010-08-311-0/+25
| | | | Enhanced Button Option.
* Dialog: When using the title attribute, update the title option. Fixes #5877 ↵Scott González2010-08-271-1/+5
| | | | - Dialog: when using the title attribute, the title option should be updated.
* Dialog: Wrap buttons in a div so we can float the div instead of the ↵Scott González2010-07-291-1/+1
| | | | individual buttons. Fixes #4529 - dialog buttons are accessed in wrong order using tab.
* Dialog: Fixed tests for position option.Scott González2010-07-161-26/+22
|
* Dialog: allow setting position with ui.position arguments. Fixes #5459 - ↵Ben Hollis2010-07-141-2/+101
| | | | Dialog: expose .position() API
* Removed use of .data() for getting/setting options in tests; using each ↵Scott González2009-11-091-12/+12
| | | | plugin's option method instead. Fixes #4853 - Remove use of .data() for options in tests.
* dialog: fixed _position regression; wrote a test for the default positon, ↵Jörn Zaefferer2009-09-191-1/+10
| | | | which still needs some tuning
* dialog unit tests: options closeOnEscape, draggableRichard Worth2009-09-191-3/+19
|
* Fixed dialog tests to use same instead of equals for hashes.Scott González2009-03-281-2/+2
|
* dialog unit tests: split tests into individual filesRichard Worth2009-02-041-2/+283
|
* unit tests: created separate file for each module: core, common widget, ↵Richard Worth2009-02-021-0/+12
events, methods, options, tickets