aboutsummaryrefslogtreecommitdiffstats
path: root/ui
Commit message (Collapse)AuthorAgeFilesLines
* Dialog: Batch size-related option settings.Scott González2010-09-271-43/+47
|
* Widget: Added _setOptions method for handling normalized options setting. ↵Scott González2010-09-271-4/+9
| | | | Fixes #6114 - Widget: Add _setOptions() method.
* Progressbar: Added a complete event. Fixes #3500 - Progressbar callback at ↵Scott González2010-09-271-0/+3
| | | | the end.
* Autocomplete: Only prevent the default action for enter when a menu item is ↵Scott González2010-09-271-2/+2
| | | | | | active. Fixes #6038 - Autocomplete: Allow default behaviour on enter when menu is open but inactive. Thanks Ján Suchal.
* Autocomplete (Menu): Only traverse through .ui-menu-item elements for ↵Scott González2010-09-271-8/+10
| | | | paging. Fixes #6029 - Autocomplete: Custom item can be activated (and result in error) on PageUp/PageDown key click.
* Autocomplete: Handle IE firing focus events asynchronously. Fixes #6109 - ↵Scott González2010-09-241-0/+6
| | | | Autocomplete Change event does not fire in IE.
* Datepicker: Added Portuguese localization. Fixes #6102 - Datepicker: Add ↵Scott González2010-09-241-0/+22
| | | | Portuguese localization.
* Widget: Use charAt instead of substring for private method check.Daniel Steigerwald2010-09-201-1/+1
|
* Accordion: Don't pass multiple classes to .toggleClass(). Fixes #6084 - ↵Scott González2010-09-201-1/+2
| | | | Accordion: 1.8.5 not fully compatible with core 1.3.2.
* Core: Only use mousedown to prevent text selection in browsers that don't ↵Scott González2010-09-201-6/+7
| | | | support selectstart. Fixes #6080 - Core: disableSelection() disables select elements in Chrome.
* Datepicker: Added galician localization. Fixes #6079 - Datepicker: Add ↵Jorge Barreiro2010-09-201-0/+23
| | | | Galician localization.
* Effects: Fixed .show(), .hide(), .toggle() to accept a hash of options ↵Scott González2010-09-201-4/+17
| | | | again. Fixes #6078 - Effects: Passing an object for parameters no longer works. Fixes #6067 - Dialog show/hide animations do not work.
* Datepicker: Hightlight the curerent date, not the selected date. Fixes #5984 ↵Lim Chee Aun2010-09-201-1/+1
| | | | - Datepicker showing multiple months highlights selected day in all of them
* Autocomplete: Properly handle non-item clicks inside the suggestion list. ↵Scott González2010-09-201-1/+1
| | | | Fixes #6052 - Autocomplete suggestion list does not close properly.
* Dialog: Don't call draggable.destroy if we're not currently draggable. Fixes ↵Scott González2010-09-201-4/+7
| | | | #6069 - DIALOG windows 1.8.5 draggapble problem.
* datepicker: changed parseDate to be case insensitive. Fixed #6036 - ↵AndrewNewcomb2010-09-091-1/+1
| | | | datepicker: parseDate is case sensitive.
* Core: Avoid layout bug in IE with minHeight support test.Scott González2010-09-071-1/+3
|
* Tabs: Prevent opening a tab while panels are being animated. Fixes #4771 - ↵Christopher McCulloh2010-09-071-0/+1
| | | | Tabs: Occassionally displays multiple tabs when clicked with rotate control using opacity toggle fx.
* Core: Improvements to minHeight support test. Thanks jdalton.Scott González2010-09-071-6/+10
|
* Dialog: If the browser doesn't support minHeight, use height to set the ↵Scott González2010-09-071-1/+2
| | | | minHeight. Fixes #6027 - Dialog: minHeight isn't properly handled on init in IE6.
* Core: Added $.support.minHeight. Fixes #6026 - Core: Add ↵Scott González2010-09-071-2/+15
| | | | jQuery.support.minHeight.
* Tabs: Handle empty hrefs for IE6/7 as invalid. Fixes #5755 - Tabs: tabs with ↵Scott González2010-09-031-1/+1
| | | | an empty href are enabled in IE6/7.
* Tabs: Allow non-latin characters for ids. Fixes #4581 - title attribute for ↵Scott González2010-09-031-1/+1
| | | | remote tabs does not support foreign languages.
* Position: Take margin into account when performing collisions. Fixes #5766 - ↵Ben Hollis2010-09-031-9/+24
| | | | position: collision should take margin into account.
* Widget: Hook into jQuery.cleanData to auto-destroy widgets. Fixes #6008 - ↵Scott González2010-09-031-13/+23
| | | | Widget: auto-destroy is broken in jQuery 1.4.
* Dialog: Set the _isOpen flag before triggering the open event. Fixes #6012 - ↵Scott González2010-09-021-1/+1
| | | | Dialog: _isOpen flag should be set before triggering open event.
* Core: Refactored .disableSelection() and .enableSelection().Scott González2010-09-011-51/+12
|
* Dialog: Added additional syntax for creating buttons. Fixes #4344 - Dialog: ↵Scott González2010-08-311-4/+9
| | | | Enhanced Button Option.
* Autocomplete: Store term when selecting an item to prevent another search ↵jzaefferer2010-08-311-0/+1
| | | | triggered before blur. Fixes #5591 - Home and End keys trigger search
* Dialog: When using the title attribute, update the title option. Fixes #5877 ↵Scott González2010-08-271-1/+2
| | | | - Dialog: when using the title attribute, the title option should be updated.
* Dialog: Don't return true when we don't want to cancel events. Fixes #3523 - ↵Scott González2010-08-271-1/+4
| | | | Dialog: onclick return value ignored.
* Widget: Throw errors when calling non-existent methods or methods on ↵Scott González2010-08-271-4/+9
| | | | 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-3/+4
| | | | Position: option 'of' accepts jQuery object unless it wraps document. Fixes #5655 - (Possible) Typo in jquery.ui.position 1.8.1.
* Position: Created center variable for better minification. Fixes #5964 - ↵Scott González2010-08-271-13/+12
| | | | Combine horizontalDefault and verticalDefault to one variable - possibly named center.
* Core: Fixed .disableSelect() and .enableSelect() in all browsers. Fixes ↵Scott González2010-08-271-12/+51
| | | | #5723 - disableSelection() doesn't work cross-browser.
* Core: Re-ordered functions.Scott González2010-08-271-63/+70
|
* Autocomplete: Abort existing ajax requests when running new searches.Scott González2010-08-241-1/+5
|
* Autocomplete: Don't handle remote data if it's not the most recent request. ↵Scott González2010-08-241-2/+7
| | | | Fixes #5982 - Autocomplete: Race condition causes incorrect suggestions.
* Widget: Refactored code for re-initialization to reduce file size.Scott González2010-08-231-4/+1
|
* Button: Read disabled attribute from original element if disabled option is ↵Scott González2010-08-181-0/+5
| | | | null. Fixes #5252 -Button: read disabled option from input elements.
* Buttonset: Ignore hidden buttons. Fixes #5946 - buttonset should ignore ↵Scott González2010-08-181-5/+7
| | | | buttons that are not :visible.
* Position: Fix flip collision. Fixes #5932 - Position: flip collision ↵Ben Hollis2010-08-111-3/+6
| | | | handling is wrong in some cases.
* Tabs: Ignore sublists. Fixes #5893 - Tabs: ability to contain sublists.ph-ausseil2010-08-111-1/+1
|
* Datepicker: Added Kazakhstan localization. Fixes #5924 - Kazakhstan ↵Scott González2010-08-111-0/+23
| | | | localization for ui.datepicker.
* Autocomplete: changed menu activated function to check if the offset is ↵Robson Braga Araujo2010-08-111-1/+1
| | | | greater than or equal the height. Fixed #5923 - autocomplete: Scrolling with the keyboard sometimes does not show the item (Chrome)
* Autocomplete: changed the search function to always store the last term that ↵Robson Braga Araujo2010-08-111-4/+5
| | | | was entered by the user. Fixed #5922 - autocomplete: Search not triggered if the first letter is the same as the first letter of a previous erased content
* Fixed broken whitespace characters and missing semicolon. Fixes #3921 - ↵Scott González2010-08-103-3/+3
| | | | Problem with JavaScriptPacker.
* Effects: Fix show/hide/toggle test for using core functions. Fixed: #5456 - ↵malsup2010-08-091-4/+4
| | | | show() function broken with "normal" speed
* Autocomplete: Handle clicks outside the autocomplete after scrolling the ↵Scott González2010-08-051-1/+18
| | | | results (which causes the body to gain focus). Fixes #5903 - Autocomplete doesn't close after scrolling.
* Autocomplete: Don't reset text field value on blur unless it will actually ↵Scott González2010-08-041-1/+4
| | | | change the value. Fixes #5900 - Autocomplete: mousing over menu option replaces text box contents, moves caret.