aboutsummaryrefslogtreecommitdiffstats
path: root/ui
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #5532 - Datepicker i18n: Encoding error in Swiss-French (fr-CH) fileRichard D. Worth2010-04-211-6/+6
|
* Autocomplete: Refactored code for array filtering into ↵jzaefferer2010-04-161-5/+7
| | | | $.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
* sortable: don't call the base widget _setOption for disabled to avoid the ↵Richard D. Worth2010-04-091-0/+12
| | | | ui-state-disabled class being added. Fixes #5501 - sortable: disabled should not have the ui-state-disabled class
* Autocomplete: Track input changes and fire change-event on blur, along with ↵jzaefferer2010-04-081-2/+9
| | | | selected item, if available. Fix for #5490
* Fixed spelling of Poniedziałek - Fix for #5487 - Datepicker localization: ↵Jörn Zaefferer2010-04-061-1/+1
| | | | Spelling of dayname wrong
* Accordion: Fixed case for tabIndex (was tabindex), fixes failing ↵jzaefferer2010-04-031-2/+2
| | | | destroy-test in IE6
* slider: jslint cleanup (thanks for the start zhaoz) and style changes to ↵Richard D. Worth2010-04-021-334/+382
| | | | meet http://docs.jquery.com/JQuery_Core_Style_Guidelines
* ui core: enableSelection, disableSelection: Removed selectstart event ↵Richard D. Worth2010-04-021-4/+2
| | | | filters from enableDisable and disableSelection as these are general utility convenience methods intended to prevent native browser text selection not jQuery UI Selectable selection. Fixes #5477 - core: enableSelection and disableSelection should only prevent native browser text selection
* slider: corrected a regression introduced by commit 5ffd3abRichard D. Worth2010-04-021-2/+2
|
* Slider: added support for canceling start event. Fixes #5472 - slider: event ↵Richard D. Worth2010-04-011-3/+9
| | | | start not cancelable
* Align slider value to step. Fixes #5471 - value not aligned to step when set ↵Richard D. Worth2010-04-011-19/+22
| | | | programatically
* Revert accidental "Merge branch 'tooltip' of github.com:jquery/jquery-ui"jzaefferer2010-04-011-145/+0
| | | | | | | This reverts commit df31e22b9572ef105fc83e130041b1165023a4ac, reversing changes made to ab8d15521785e764a6bf47beee0cfd18929607d3. Need to revert this revert later on when actually merging the tooltip branch into master.
* Merge branch 'tooltip' of github.com:jquery/jquery-uijzaefferer2010-04-011-0/+145
|\
| * Tooltip: Renamed show to open and open to _show (based on spec), changed ↵unknown2010-03-311-6/+8
| | | | | | | | trigger(show) to trigger(open) and added trigger(close); always use element as target, enabling programmatic opening and closing
| * Merge branch 'master' into tooltipjzaefferer2010-03-273-18/+13
| |\
| * \ Merge branch 'master' into tooltipjzaefferer2010-03-263-5/+9
| |\ \
| * | | Tooltip: Added comment about asny response handlingjzaefferer2010-03-251-0/+1
| | | |
| * | | Tooltip: Add role='application' to body when there is no role attribute; ↵jzaefferer2010-03-251-0/+5
| | | | | | | | | | | | | | | | required for screenreaders to interpret aria attributes correctly
| * | | Tooltip: Fix positioningjzaefferer2010-03-251-1/+4
| | | |
| * | | Tooltip: Replacing mouseover/out with mouseenter/leave, dropping (for now) ↵jzaefferer2010-03-251-2/+2
| | | | | | | | | | | | | | | | support for event delegation
| * | | Copying files from old Googlecode dev branch for tooltipjzaefferer2010-03-211-0/+134
| | | |
* | | | Changed widget factory to keep generic css framework class -state-disabled ↵Richard D. Worth2010-03-291-2/+2
| |_|/ |/| | | | | | | | in ui namespace instead of custom widget namespace. Fixes #5443 - $.Widget uses [namespace]-state-disabled, must be ui-state-disabled to be useful
* | | Merge branch 'master' of github.com:jquery/jquery-uijzaefferer2010-03-271-0/+4
|\ \ \
| * | | Position: Use parseInt() to prevent fractional pixel values.Scott González2010-03-261-0/+4
| | | | | | | | | | | | | | | | Fixes #5280 - ui.position generates different position in static context.
* | | | Accordion: Moving IE layout fix (via zoom: 1) from js to css - fixes the ↵jzaefferer2010-03-271-5/+0
| | | | | | | | | | | | | | | | destroy-method test in IEs (zoom style wasn't cleaned up on destroy) and should perform slightly faster, too
* | | | Slider: Refactoring _trimValue method to use more sane programming logicjzaefferer2010-03-271-3/+6
| | | |
* | | | Slider: Refactoring _valueMin and _valueMax methods, removing useless ↵jzaefferer2010-03-271-4/+2
| | | | | | | | | | | | | | | | temporary variables
* | | | Slider: Inlining _step method, was used only oncejzaefferer2010-03-271-6/+1
| |_|/ |/| |
* | | Autocomplete: Only remove classes actually added by the widget, ui-widget ↵jzaefferer2010-03-261-1/+1
| | | | | | | | | | | | etc. aren't added, so don't remove them
* | | Added $.ui.keyCode.ALT to complete list of metakeys, used in autocompletejzaefferer2010-03-262-1/+2
|/ /
* | Fixed size calculations for dialogs.Scott González2010-03-251-2/+5
| | | | | | | | Fixes #5392 - Dialog explicit height doesn't match given value from set option.
* | Menu: Ignore clicks that don't occur on the anchor tag within a valid menu ↵Scott González2010-03-241-1/+1
| | | | | | | | | | | | item. Fixes #5376 - Menu plugin fires select when border is clicked.
* | Dialog: Use .height(0) instead of .hide(0) when determining the size of the ↵Scott González2010-03-221-1/+1
|/ | | | | non-content area of a dialog. Partial fix for #5392 - Dialog explicit height doesn't match given value from set option.
* Menu: pass the original event to the select callback.Scott González2010-03-201-7/+7
| | | Fixes #5343 - Add option to allow form submission when option is chosen.
* Menu: Don't trigger select if a click occurs outside of a menu item.Scott González2010-03-201-0/+3
| | | Fixes #5376 - Menu plugin fires select when border is clicked.
* Autocomplete: Don't trigger a search when the left or right arrow keys are used.Scott González2010-03-201-0/+2
| | | Fixes #5289 - Autocomplete: ignore cursor left/right.
* Menu: skip over elements that aren't menu items.Scott González2010-03-201-3/+3
| | | Fixes #5188 - Refactor menu rendering for more customizing.
* autocomplete: pass through mouse and key events to menu methods in order to ↵Jörn Zaefferer2010-03-201-23/+25
| | | | differentiate between key and mouse events in autocomplete
* eol-style and mime-typeRichard Worth2010-03-175-93/+115
|
* fixed #5368 - Autocomplete: aria role for menu should be listbox instead of menuRichard Worth2010-03-171-1/+1
|
* Slider: fixed change event to be triggered by keyup and value and values ↵Richard Worth2010-03-171-1/+11
| | | | option setters. Fixes #5367 - slider change event not triggered by keypress
* Fixed #5362 - Buttonset class should be ui-buttonset because buttonset is ↵Richard Worth2010-03-171-2/+2
| | | | one word
* Button: Added refresh method to buttonset, futher fixes #5278 - ui.buttons ↵Richard Worth2010-03-171-10/+23
| | | | doesn't visually reset on form "reset" event or input "change" event
* Buttonset - remove corner classes from button widgets instead of button ↵Richard Worth2010-03-171-1/+5
| | | | elements on destroy. Fixes #5361 - buttonset method destroy doesn't remove corner classes from label elements
* button: whitespace and quotes. See ↵Richard Worth2010-03-171-2/+2
| | | | http://docs.jquery.com/JQuery_Core_Style_Guidelines
* Remove ui-helper-hidden-accessible from correct element. See r3880 and r3892Richard Worth2010-03-171-1/+3
|
* Button: spacing.Scott González2010-03-161-2/+2
|
* Sortable: Fixed a bug with over/out events and connected draggables.Scott González2010-03-161-2/+5
| | | | Fixes #5346 - over and out events not triggered when draggable connected with single (non-nested) sortable.
* Menu: Don't pass empty values to ._trigger().Scott González2010-03-161-1/+1
|
* Autocomplete: fixed #5349 - Autocomplete: mouseover of menu item causes data ↵Richard Worth2010-03-151-1/+3
| | | | loss