aboutsummaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | 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.
| * | | Widget: Throw errors when calling non-existent methods or methods on ↵Scott González2010-08-275-34/+3
| | | | | | | | | | | | | | | | uninistantiated widgets. Fixes #5972 - Widget: Throw error for non-existent method calls.
| * | | Position: Handle $(document) and $(window) for the of option. Fixes #5963 - ↵Scott González2010-08-271-0/+22
| | | | | | | | | | | | | | | | Position: option 'of' accepts jQuery object unless it wraps document. Fixes #5655 - (Possible) Typo in jquery.ui.position 1.8.1.
| * | | Widget tests: Coding standards.Scott González2010-08-261-7/+7
| | | |
| * | | Widget: Added more unit tests.Scott González2010-08-262-0/+132
| | | |
| * | | Widget Tests: Coding standards.Scott González2010-08-261-79/+83
| | | |
| * | | Widget: Added more unit tests.Scott González2010-08-261-6/+89
| | | |
| * | | Widget: Added tests for re-initialization.Scott González2010-08-231-0/+29
| | | |
| * | | Button: Read disabled attribute from original element if disabled option is ↵Scott González2010-08-182-1/+25
| | | | | | | | | | | | | | | | null. Fixes #5252 -Button: read disabled option from input elements.
| * | | Buttonset: Ignore hidden buttons. Fixes #5946 - buttonset should ignore ↵Scott González2010-08-181-1/+6
| | | | | | | | | | | | | | | | buttons that are not :visible.
| * | | Tabs: Ignore sublists. Fixes #5893 - Tabs: ability to contain sublists.ph-ausseil2010-08-112-0/+23
| | | |
| * | | Dialog: modified so that minWidth is respected. Fixes #5531 - dialog width ↵Ziling Zhao2010-07-301-0/+21
| | | | | | | | | | | | | | | | should be at least minWidth on creation.
| * | | Autocomplete: Respect the disabled option. Fixes #5619 - Autocomplete widget ↵Scott González2010-07-301-0/+18
| | | | | | | | | | | | | | | | keeps looking for remote data even when it's disabled.
| * | | Revert "Use pushStack in widget method. Fixes #5732 - make the widget method ↵Scott González2010-07-304-35/+4
| | | | | | | | | | | | | | | | | | | | | | | | maintain the stack" This reverts commit ea58cd5ac0d852a9c7d7ceadbcbb74006cf9052d.
| * | | Update to latest QUnit.jzaefferer2010-07-301-3/+3
| | | |
| * | | Use pushStack in widget method. Fixes #5732 - make the widget method ↵jzaefferer2010-07-304-4/+35
| | | | | | | | | | | | | | | | maintain the stack
| * | | Added widget to unit tests index page.jzaefferer2010-07-301-0/+1
| | | |
| * | | Improving visual testcase for position. Partial fix for #5284 - Position: ↵jzaefferer2010-07-301-15/+17
| | | | | | | | | | | | | | | | Smarter collision detection
| * | | 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.
| * | | Progressbar: cleanup.Scott González2010-07-291-0/+14
| | | |
| * | | Tabs: coding standard.Scott González2010-07-281-6/+6
| | | |
| * | | Core Tests: Fixed image reference.Scott González2010-07-222-1/+1
| | | |
| * | | Core: Better support for areas in :focusable and :tabbable selectors. ↵Scott González2010-07-222-19/+34
| | | | | | | | | | | | | | | | Partial fix for #4488 - :focusable and :tabbable are broken with jQuery 1.3.2.
| * | | Core: Added .outerWidth(), .outerHeight(), .innerWidth(), .innerHeight(). ↵Scott González2010-07-212-0/+110
| | | | | | | | | | | | | | | | Fixes #5850 - .outerWidth(), .outerHeight(), .innerWidth(), .innerHeight() setters.
| * | | Core: Fixed :focusable and :tabbable selectors for to work with :hidden and ↵Scott González2010-07-212-15/+15
| | | | | | | | | | | | | | | | :visibile selectors in jQuery 1.3.2+. Still need to handle areas properly. Partial fix for #4488 - :focusable and :tabbable are broken with jQuery 1.3.2.
| * | | Autocomplete: Added appendTo option. Fixes #5836 - Autocomplete: add ↵Scott González2010-07-213-2/+33
| | | | | | | | | | | | | | | | appendTo option.
| * | | Core: Removed tests for .attr() ARIA override since the override no longer ↵Scott González2010-07-212-22/+0
| | | | | | | | | | | | | | | | exists.
| * | | Tabs: Added tests for select event.Scott González2010-07-201-1/+12
| | | |
| * | | Menu: float .ui-menu since all .ui-menu-item elements are floated. Fixes ↵Scott González2010-07-192-2/+2
| | | | | | | | | | | | | | | | #5691 - wrong menu size calculation in webkit browsers (Autocomplete).
| * | | Autocomplete: Added position option. Fixes #5153 - Autocomplete position option.Scott González2010-07-191-1/+6
| | | |
| * | | Tabs: Updated tests.Scott González2010-07-162-11/+3
| | | |
| * | | Button performance test: Don't use alert().Scott González2010-07-161-1/+1
| | | |
| * | | Button performance test: Added alert for time to initialize.Scott González2010-07-161-0/+3
| | | |
| * | | Dialog: Fixed tests for position option.Scott González2010-07-161-26/+22
| | | |
| * | | added empty test for containment by array optionJustinMacCarthy2010-07-161-0/+4
| | | |
| * | | Widget: Deep extend options when creating a new plugin. Fixes #5830 - ↵Scott González2010-07-153-1/+48
| | | | | | | | | | | | | | | | Widget: Using inheritance overwrites the base classes options.
| * | | 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
| * | | All: Added http://jqueryui.com/about to header comments.Scott González2010-07-141-1/+1
| | | |
| * | | 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.
| * | | Dialog: Add positioning for content div. Fixes #4319 - Accordion overflow ↵Scott González2010-07-141-0/+202
| | | | | | | | | | | | | | | | breaks when displayed inside a dialog on Internet Explorer.
| * | | Updated copyright headers to make it clear that you can choose between MIT ↵Scott González2010-07-091-3/+3
| | | | | | | | | | | | | | | | and GPLv2. Also added a link to http://jquery.org/license.
* | | | Merge branch 'widget-super' into devpreviewjzaefferer2010-06-191-0/+33
|\ \ \ \
| * | | | Add _superApply method and use it in a few placesjzaefferer2010-06-171-0/+16
| | | | |
| * | | | First draft for a $.Widget _super methodjzaefferer2010-06-171-0/+17
| |/ / /
* | | | Merge branch 'menu' into devpreviewjzaefferer2010-06-1918-80/+347
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | Conflicts: tests/unit/index.html
| * | | Menu: Implemented destroy method and disabled option, modified test to pass ↵jzaefferer2010-06-182-11/+27
| | | | | | | | | | | | | | | | html-compare-destroy test and extended default visual test for testing destroy and disabled features
| * | | Menu:the first set of unit test files.dominiquevincent2010-05-067-0/+178
| | | | | | | | | | | | | | | | Signed-off-by: dominiquevincent <dominique.vincent@toitl.com>
| * | | First attempt at a menubarjzaefferer2010-04-301-0/+94
| | | |