aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/dialog
Commit message (Collapse)AuthorAgeFilesLines
* Dialog: modified so that minWidth is respected. Fixes #5531 - dialog width ↵Ziling Zhao2010-07-301-0/+21
| | | | should be at least minWidth on creation.
* Revert "Use pushStack in widget method. Fixes #5732 - make the widget method ↵Scott González2010-07-301-6/+0
| | | | | | maintain the stack" This reverts commit ea58cd5ac0d852a9c7d7ceadbcbb74006cf9052d.
* Use pushStack in widget method. Fixes #5732 - make the widget method ↵jzaefferer2010-07-301-0/+6
| | | | maintain the stack
* 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
|
* Updated test for default position option: Reference using-implementation, as ↵jzaefferer2010-07-151-7/+1
| | | | QUnit compares functions only by reference
* Dialog: Updated test for default position option. QUnit still fails the test ↵Scott González2010-07-141-1/+13
| | | | though.
* Dialog: allow setting position with ui.position arguments. Fixes #5459 - ↵Ben Hollis2010-07-141-2/+101
| | | | Dialog: expose .position() API
* Dialog: Verify that we get a string back from .attr( "title" ) before using ↵Scott González2010-07-141-0/+1
| | | | the return value. Fixes #5742 - Form field with `name="title"` moved to title area.
* Unit tests: Disable stale widget tests on testswarmjzaefferer2010-04-141-1/+12
|
* html pages: added HTML5 meta charset UTF-8 tag, changed DOCTYPE to uppercaseRichard Worth2010-03-121-1/+2
|
* dialog: corrected typo in ui.position property for drag events. Updated unit ↵Richard Worth2010-03-111-18/+42
| | | | tests tracking fix of #5291
* Externals: updated QUnit to http://github.com/jquery/qunit commit ↵Richard Worth2010-02-252-6/+13
| | | | | | | 67ba5a338d836014c24345dc218ab3c9bb63b06e The various updates to the unit test suites introduced 0 regressions due to update of QUnit, however the addition of jquery.ui.dialog.css to the dialog test suite did introduce one regression, to the dialog option height tests. Also removed some old crufty woefully incomplete unused and rotted test harnesses.
* Fixed #5182 - Update to jQuery 1.4.2Richard Worth2010-02-161-1/+1
|
* Dialog: Update the internal flag for whether or not the dialog is open ↵Scott González2010-02-161-0/+14
| | | | | | before triggering the close event. Fixes #5184 - isOpen in dialogclose event is true.
* switched to jQuery 1.4.1Richard Worth2010-01-271-1/+1
|
* Deprecated beforeclose option instead of removing it for now, fixes reopened ↵Richard Worth2010-01-271-1/+45
| | | | #4669 - Dialog: beforeclose option should be beforeClose.
* switched to jQuery 1.4Richard Worth2010-01-201-1/+1
|
* Dialog, position: Removed bgiframe option; always use bgiframe when available.Scott González2010-01-191-1/+0
| | | | Fixes #5071 - Remove bgiframe option from all plugins.
* Replaced stackfix with bgiframe.Scott González2010-01-142-2/+2
| | | | Fixes #5061 - Remove stackfix.
* Merged in /branches/dev r3251:3620 (excluding autocomplete, modal, tooltip, ↵Scott González2010-01-071-0/+5
| | | | menu; including menu static tests).
* Added jquery.ui.mouse.js to non-interaction demos/tests that use interaction ↵Scott González2009-12-231-0/+1
| | | | plugins.
* extracting widget factory into jquery.ui.widget.jsJörn Zaefferer2009-12-161-0/+1
|
* Removed use of .data() for getting/setting options in tests; using each ↵Scott González2009-11-092-24/+14
| | | | plugin's option method instead. Fixes #4853 - Remove use of .data() for options in tests.
* update to latest QUnitJörn Zaefferer2009-09-291-1/+1
|
* 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-192-8/+24
|
* dialog unit tests: methods close, moveToTop, openRichard Worth2009-09-191-5/+22
|
* dialog: fixed enable and disable methodsRichard Worth2009-09-191-2/+10
|
* renamed all ui.*.js files to jquery.ui.*.js, all effects.*.js files to ↵Richard Worth2009-09-171-6/+6
| | | | jquery.effects.*.js per announcement and discussion here http://groups.google.com/group/jquery-ui-dev/msg/d565a0c56e0cb935
* updated to latest QUnitJörn Zaefferer2009-09-151-1/+1
|
* dialog: added unit test for ticket #4826Ca-Phun Ung2009-09-151-0/+21
|
* dialog: methods test cleanupJörn Zaefferer2009-09-151-1/+5
|
* dialog: fixed dragStop test (was using dragStart instead of dragStop, ↵Jörn Zaefferer2009-09-141-1/+1
| | | | copy&paste FTF)
* change script ordering to load testswarm agent after QUnitJörn Zaefferer2009-09-111-1/+1
|
* update to lastest QUnitJörn Zaefferer2009-08-301-1/+1
|
* dialog unit tests: added position and stackfixRichard Worth2009-08-121-1/+3
|
* Removed jquery.simulate from external/ as it's being removed from ↵Richard Worth2009-08-101-1/+1
| | | | jqueryjs.googlecode.com/svn/trunk/plugins
* Dialog tests: Switch bgiframe to stackfix.Scott González2009-07-271-1/+1
|
* Dialog: Changed beforeclose option to beforeClose. Fixes #4669 - Dialog: ↵Scott González2009-07-111-4/+4
| | | | beforeclose option should be beforeClose.
* Widget factory: Force event types to be lowercase. Fixes #4668 - All event ↵Scott González2009-07-111-12/+12
| | | | types should be lowercase even if the corresponding callback is camelcase.
* Dialog: Use _trigger for drag and resize events instead of executing ↵Scott González2009-07-101-26/+64
| | | | callbacks directly. Fixed #4629 - Dialog events not being triggered.
* Widget factory: Convert falsy data values to an empty hash in _trigger. ↵Scott González2009-07-041-17/+17
| | | | Fixes #4650: ui hash not always provided in events/callbacks.
* replaced svn:externals with versioned files within trunk/externalsJörn Zaefferer2009-05-271-2/+2
|
* Merged in widget-factory branch and added tests. Fixes #4411 - Widget ↵Scott González2009-04-151-1/+40
| | | | factory should auto detect getters.
* Fixed dialog tests to use same instead of equals for hashes.Scott González2009-03-281-2/+2
|
* Switched to jQuery 1.3.2Richard Worth2009-02-201-1/+1
|
* dialog: added some missing defaultsRichard Worth2009-02-091-2/+4
|
* Dialog: Removed shadow option due to introducing too many bugs. (Reopens #3681).Scott González2009-02-051-1/+0
|
* dialog unit tests: split tests into individual filesRichard Worth2009-02-048-733/+683
|