aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Removed case-sensitive .nodeName check. Scott González2010-04-271-3/+1
| | | Fixes #5557 - Comparing element.nodeName directly against upper case tag names can cause problems.
* Revert "Draggable: Don't use computed style for top and left of ↵Richard D. Worth2010-04-231-2/+2
| | | | | | position:relative elements. Fixes #5537 - Draggable: position relative draggable jumps on first drag in Opera" This reverts commit dc94bbf53628ada1b5d8e7da909f63bfe10f25ff.
* Autocomplete: Ignore command (left and right/menu/windows), insert, caps ↵Scott González2010-04-231-0/+7
| | | | | | lock, home, end keys. Fixes #5415 - Catch all common keys while typing a word.
* Core: Added COMMAND/COMMAND_LEFT/WINDOWS, COMMAND_RIGHT/MENU key codes.Scott González2010-04-231-1/+6
| | | | Fixes #5542 - Add keyCodes for command buttons.
* Autocomplete: Changed cache demo to cache all results.Scott González2010-04-231-25/+8
| | | | Fixes #5398 - Remote-with-cache demo does not break if (cache.term == request.term) but executes another request.
* Button: Added missing semicolon.Scott González2010-04-231-1/+1
| | | | Fixes #5536 - Mission semicolon on line 5368.
* Draggable: Don't use computed style for top and left of position:relative ↵Richard D. Worth2010-04-221-2/+2
| | | | elements. Fixes #5537 - Draggable: position relative draggable jumps on first drag in Opera
* Updating the master version to 1.9preRichard D. Worth2010-04-211-1/+1
|
* Tagging the 1.8.1 release.1.8.1Richard D. Worth2010-04-211-1/+1
|
* Autocomplete: Added demo for accent folding.Scott González2010-04-211-0/+64
| | | | Proof of concept for #5219 - Autocomplete: Support for accent-folding.
* Autocomplete: Added custom rendering for custom data demo.Scott González2010-04-211-1/+7
|
* Fixed #5532 - Datepicker i18n: Encoding error in Swiss-French (fr-CH) fileRichard D. Worth2010-04-211-6/+6
|
* added tests for enable/disablecarhartl2010-04-202-27/+70
|
* Merge branch 'master' of github.com:jquery/jquery-uimaggiewachs2010-04-1656-1052/+2156
|\
| * Autocomplete: Fixed href to multiple-remote dmeo in indexjzaefferer2010-04-161-1/+1
| |
| * Autocomplete: Refactored code for array filtering into ↵jzaefferer2010-04-165-23/+94
| | | | | | | | $.ui.autocomplete.filter, used by remote-with-cache and modified multiple-demo (now with local data); added multiple-remote to also show multiple with remote data
| * Autocomplete: code improvements for multiple demojzaefferer2010-04-151-4/+4
| |
| * Autocomplete: multiple demo addedjzaefferer2010-04-152-0/+76
| |
| * Unit tests: Disable stale widget tests on testswarmjzaefferer2010-04-144-4/+48
| |
| * Unit tests: Disable stale interaction tests only on testswarm, but allow ↵jzaefferer2010-04-144-16/+48
| | | | | | | | them to run locally
| * Unit tests: Try to disable tests only for testswarm; if this works, I'll ↵jzaefferer2010-04-141-4/+12
| | | | | | | | modify the other ones as well
| * Draggable demo: visual feedback - use draggable option stack selector. Fixed ↵Richard D. Worth2010-04-141-1/+1
| | | | | | | | #5513 - Draggable/Stackable Demo broken and docs need to be updated
| * Position unit tests: Add module for testswarm to run all testsjzaefferer2010-04-141-0/+2
| |
| * Progressbar unit test: Ignore false vs. false in IE6 AND 7 in aria ↵jzaefferer2010-04-131-2/+2
| | | | | | | | attributes test
| * Autocomplete unit tests: Fix event handling in IEjzaefferer2010-04-131-2/+3
| |
| * Progressbar unit test: Ignore false vs. false in IE6 in aria attributes testjzaefferer2010-04-131-1/+1
| |
| * Autocomplete and button unit tests: Same remove-role-attr fix as for ↵jzaefferer2010-04-132-0/+8
| | | | | | | | accordion in destroy-method test
| * Accordion unit tests: And another height-testing hotfix for Safari 3.xjzaefferer2010-04-131-1/+1
| |
| * Accordion unit tests: One more height-testing hotfix for Safari 3.xjzaefferer2010-04-131-4/+4
| |
| * Accordion unit tests: Remove role attribute to pass Opera 9 and adjust ↵jzaefferer2010-04-133-32/+27
| | | | | | | | height tests to tolerate different results, as long as they are consistent
| * Accordion unit tests: Trying some more style resets for getting accordion ↵jzaefferer2010-04-121-1/+1
| | | | | | | | tests to pass in Safari 3.x, need to commit to see Testswarm results
| * Accordion unit tests: Cleaned and fixed destroy-method test, working around ↵jzaefferer2010-04-122-4/+4
| | | | | | | | html rendering inconsistencies
| * Accordion unit tests: Cleaned and fixed resize-method test, using ↵jzaefferer2010-04-121-9/+1
| | | | | | | | #navigation avoids the :visible matching display:none issue in IE8
| * Effects demos: cleanupjzaefferer2010-04-121-1/+1
| |
| * sortable: don't call the base widget _setOption for disabled to avoid the ↵Richard D. Worth2010-04-092-1/+14
| | | | | | | | ui-state-disabled class being added. Fixes #5501 - sortable: disabled should not have the ui-state-disabled class
| * Autocomplete: Combobox demo update, fixed mustMatch with corrected change ↵jzaefferer2010-04-081-7/+12
| | | | | | | | event, also added button for toggling the hidden select and an empty-value option. Fixes #5453
| * Autocomplete: Track input changes and fire change-event on blur, along with ↵jzaefferer2010-04-082-6/+30
| | | | | | | | selected item, if available. Fix for #5490
| * Set font-weight normal for active menu items - Fix for #5491 Autocomplete: ↵unknown2010-04-071-0/+1
| | | | | | | | menu items have no default-state-class, need to override font-weight
| * Button: some demo code formattingunknown2010-04-061-13/+15
| |
| * Autocomplete: Change demo title in index.file to fit it in one lineunknown2010-04-061-1/+1
| |
| * Fixed spelling of Poniedziałek - Fix for #5487 - Datepicker localization: ↵Jörn Zaefferer2010-04-061-1/+1
| | | | | | | | Spelling of dayname wrong
| * Added link to categories-demo to autocomplete demos index. Still need to ↵Jörn Zaefferer2010-04-051-0/+1
| | | | | | | | move the menu-overrides from that demo back to menu (is there a ticket?).
| * Accordion: different useless markup for getting consistent results for the ↵jzaefferer2010-04-031-3/+3
| | | | | | | | destroy test
| * Accordion: Trying some styl resets, maybe finding the one for Safari 3.xjzaefferer2010-04-031-1/+1
| |
| * Accordion: more useless markup for getting consistent results for the ↵jzaefferer2010-04-031-3/+3
| | | | | | | | destroy test
| * Accordion: Improved resize-method test, starting with a fixed container heightjzaefferer2010-04-031-2/+2
| |
| * Accordion: Rewrote the resize method test; fails in IE8, probably related to ↵jzaefferer2010-04-032-5/+12
| | | | | | | | :visible issue
| * Accordion unit tests: Cleanupjzaefferer2010-04-031-2/+1
| |
| * Accordion: Fixed case for tabIndex (was tabindex), fixes failing ↵jzaefferer2010-04-031-2/+2
| | | | | | | | destroy-test in IE6
| * Accordion unit tests: Use display!=none instead of :visible to work around ↵jzaefferer2010-04-031-1/+3
| | | | | | | | :visible issue in IE8