aboutsummaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Selectmenu: changed button to inline elementFelix Nagel2011-10-053-0/+3
|
* Selectmenu: fixed ENTER event on closed button, fixed demo events.htmlFelix Nagel2011-10-051-0/+1
|
* Selectmenu: removed option wrapperElementFelix Nagel2011-09-301-3/+3
|
* Selectmenu: improved events.html demoFelix Nagel2011-09-301-3/+3
|
* Selectmenu: improved value option, added demo fileFelix Nagel2011-09-272-4/+66
|
* Selectmenu: improved events and added test file with callbacksFelix Nagel2011-09-272-1/+73
|
* Selectmenu: improved disable method, added and improved demo filesFelix Nagel2011-09-271-0/+136
|
* Menu: Refactoring the collapseAll to deal with some issues selecting - ↵Corey Frang2011-09-222-2/+8
| | | | Updating unit tests. Thanks @kborchers
* Merge remote branch 'kborchers/menu_notJustUL'Jörn Zaefferer2011-09-195-4/+198
|\
| * Menu: Add support for structures other than UL/LI plus visual and unit testskborchers2011-09-145-4/+198
| |
* | Spinner: Fix step mismatches whenever stepping, paging or using the value ↵Scott González2011-09-143-20/+22
|/ | | | | | setter. Thanks Nate Ferrero
* Menu: Refactor to get rid of var that. Cleanup some odd formattings and ↵Jörn Zaefferer2011-09-131-6/+6
| | | | unneeded temp vars
* Merge remote branch 'kborchers/menu_autoCollapse'Jörn Zaefferer2011-09-121-0/+19
|\
| * Menu: Added autoCollapse as the default and added a unit testkborchers2011-09-121-0/+19
| |
* | Widget: return timer value from _delayJörn Zaefferer2011-09-121-3/+5
| |
* | Widget: Add a _delay method. Will be used in various places to replace ↵Jörn Zaefferer2011-09-121-0/+24
| | | | | | | | setTimeout with custom binding (mostly getting rid of var self/that)
* | Widget: Tests code cleanupJörn Zaefferer2011-09-122-20/+19
| |
* | Spinner: Added ability to specify custom incremental function.Scott González2011-09-091-38/+65
| |
* | Spinner: Default min and max options to null.Scott González2011-09-092-9/+15
| |
* | Autocomplete: Fixed setting of valueMethod for textareas. Fixes #7674 - ↵Scott González2011-08-302-104/+70
| | | | | | | | Autocomplete doesn't work with textareas.
* | 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.
* | Position: Added the missing div required for the fraction tests that were ↵kborchers2011-08-191-0/+4
| | | | | | | | added to fix the broken test
* | Dialog: Tabbing out of a modal dialog was possible because keypress doesn't ↵Corey Frang2011-08-191-1/+30
| | | | | | | | fire for tabs everywhere, switched to keyup. Added Unit Test - Caught by @DomenicDenicola - Fixes #3123 - Tabbing stops in modal dialog
* | Merge remote branch 'kborchers/position_flipfit2'Jörn Zaefferer2011-08-156-128/+462
|\ \
| * | Position: Added better collision detection for flip and fit, added visual ↵kborchers2011-08-126-128/+462
| | | | | | | | | | | | tests for each and updated the unit tests to take the changes into account. In the process, I removed the rounding that was being done to the position since older jQuery couldn't handle the fractions. There was another pull for this same issue and I have merged the unit tests from that pull into this commit. Also added flipfit!
* | | Spinner: Removed value option. Don't change empty values to zero on init. ↵Scott González2011-08-135-67/+55
| | | | | | | | | | | | Don't enforce min/max on blur.
* | | Spinner: Fixed precision when stepping.Scott González2011-08-121-0/+17
| | | | | | | | | | | | Thanks hughlomas
* | | Widget: Use this.widget() for event delegation.Scott González2011-08-121-11/+19
| | |
* | | Core: Added tests for :focusable and :tabbable form elements.Scott González2011-08-122-2/+9
| | |
* | | Tabs: Fixed detection of local vs. remote tabs. Fixes #4941 - Mishandling of ↵Scott González2011-08-111-1/+1
|/ / | | | | | | base tag. Fixes #4836 - Self refering href only partially detected.
* | Spinner: Fixed integration with globalize.Scott González2011-08-101-1/+1
| |
* | Datepicker: Added ability to stop datepicker from beforeShow. Fixes #7602 - ↵Karl Kirch2011-08-091-0/+33
| | | | | | | | Ability to stop datepicker from appearing with beforeShow event handler.
* | Revert "Datepicker: Added onSelect.apply() call to _setDate method if ↵Scott González2011-08-091-10/+0
| | | | | | | | | | | | onSelect is defined. Fixed #6264 - Datepicker: onSelect does not fire when setDate is called" This reverts commit effdd5d19c534f8445ebafe4212278c4366b0041.
* | Spinner: More tests. Don't trigger spin when programmatically stepping or ↵Scott González2011-08-072-24/+200
| | | | | | | | paging.
* | Spinner: Added more tests.Scott González2011-08-071-51/+90
| |
* | Spinner tests: Removed IE 6 hack in destroy test.Scott González2011-08-072-11/+7
| |
* | Spinner: Use _getCreateOptions() for value.Scott González2011-08-071-1/+1
| |
* | Spinner tests: Fixed line endings.Scott González2011-08-076-546/+546
| |
* | Spinner tests: Cleanup.Scott González2011-08-073-247/+204
| |
* | Merge branch 'spinner-getCreateOptions'Scott González2011-08-061-3/+3
|\ \ | | | | | | | | | | | | Conflicts: ui/jquery.ui.spinner.js
| * | Spinner: Use _getCreateOptions() instead of custom _markupOptions().Scott González2011-08-061-3/+3
| | |
* | | Spinner: Define defaults for callbacks.Scott González2011-08-061-1/+5
| | |
* | | Spinner tests: Cleanup.Scott González2011-08-066-156/+142
| | |
* | | Spinner: Only trigger change when the field has blurred and the value has ↵Scott González2011-08-061-0/+1
|/ / | | | | | | changed.
* | Accordion tests: Cleanup.Scott González2011-08-066-11/+11
| |
* | Button: Adding quotes to the attribute selector for labels - Fixes #7534 - ↵Corey Frang2011-08-031-0/+6
| | | | | | | | Button label selector omits quotes / fails for ids with ":"
* | Tests: Cleanup.Scott González2011-08-0310-103/+130
| |
* | Menu tests: Cleanup.Scott González2011-08-033-86/+88
| |
* | Tests: Cleanup.Scott González2011-08-0318-498/+476
| |
* | Autocomplete tests: Fixed handling of cached ajax requests in IE.Scott González2011-08-031-2/+3
| |