aboutsummaryrefslogtreecommitdiffstats
path: root/ui
Commit message (Collapse)AuthorAgeFilesLines
...
* Sortable: Append a tr with td to the placeholder of tbody elementsNils Heuermann2015-02-241-6/+17
| | | | | | | | | | When sorting tbody elements of a table the placeholder needs to have a tr with td elements to be visible. The appended elements are created in the same way as for the placeholder of a tr element; the first row of the sorted tbody is used for that. Fixes #10682 Closes gh-1380
* Dialog: Fix typoScott González2015-02-231-2/+2
| | | | | | Closes gh-1447 Thanks Spencer Davis
* Dialog: Stop tracking instance in destroy() to avoid memory leaksTJ VanToll2015-02-201-0/+1
| | | | | Fixes #11125 Closes gh-1448
* Sortable: Add support for iframesMarcus Warren2015-02-031-21/+21
| | | | | Fixes #9604 Closes gh-1443
* Resizable: correct width when grid approaches zeroMike Sherov2015-01-271-1/+1
| | | | Fixes #10590
* Resizable: Whitespace CleanupMike Sherov2015-01-271-1/+1
|
* Theme: Improve default theme stylingJasper de Groot2015-01-271-1/+2
| | | | | | | | | | | | | | | | | | Changes tooltip to use the ui-widget-shadow class, which now applies the box-shadow style. .ui-widget-shadow was created when box-shadow wasn't available. By now, there's no point in faking a custom shadow anymore. This removes the only non-structural CSS from a widget-specific file. Updates demos to use the same font-family, removes unused images. Will be available as the new default theme on ThemeRoller called "Base", while "UI Smoothness" and "UI Lightness" will still be available in the gallery. Fixes #10617 Fixes #10880 Closes gh-1436 Ref jquery/download.jqueryui.com#248
* Menu: Use ui-state-active consistentlyJörn Zaefferer2015-01-212-6/+4
| | | | | | | | So far we were using ui-state-active on active parent items, ui-state-focus on active child items. The theme update highlighted the visual inconsistency. With this change, only ui-state-active is used. Fixes #10692
* All: Drop support for jQuery 1.6.xJörn Zaefferer2015-01-134-30/+3
| | | | | | | | | | | Affects core, effects, position and widget. Only position has unit tests that fail with jQuery 1.6 without the workaround. Drops the 1.6.x copies jQuery of jQuery and removes them from the select in the testsuites. Fixes #10723 Closes gh-1422
* Selectmenu: Better handling when there are no optionsScott González2015-01-121-8/+20
| | | | | | Fixes #10662 Closes gh-1370 Closes gh-1423
* Tooltip: Accept HTMLElement and jQuery objects for the content optionDaniel Owens2015-01-121-8/+5
| | | | | | Fixes #9278 Closes #983 Closes #1421
* Slider: Fix max calculation, when step is floatJyoti Deka2015-01-121-2/+20
| | | | | Fixes #10721 Closes gh-1398
* Resizable: Match on exact node nameAdam Foster2015-01-091-2/+2
| | | | | Fixes #10748 Closes gh-1417
* Core: Match on exact node name for `:focusable` and `:tabbable`Adam Foster2015-01-091-1/+1
| | | | | Fixes #10747 Ref gh-1417
* Position: Restore old flip collision handlingThomas Meyer2015-01-091-2/+2
| | | | | | | This reverts commit 7f808b2047725cd8fde51a948cb4e5f5946c82e1. Fixes #8710 Ref gh-1071
* Accordion: Set `aria-expanded` when collapsingScott González2015-01-051-4/+7
| | | | | Fixes #10703 Closes gh-1413
* Build: Remove dates from copyright noticeAnne-Gaelle Colom2015-01-0237-37/+37
| | | | Closes gh-1403
* Widget: Improve readability in `$.widget.bridge()`Giovanni Giacobbi2014-12-311-5/+6
| | | | Closes gh-1409
* Effects: RewriteMike Sherov2014-12-1016-748/+784
| | | | | | | | | | | | | | | | | | 1. Introduces a set of helper methods to easily create and define new effects. 2. Uses clip animations and placeholders instead of wrappers for clip effects. 3. Ensures all animations are detectable as animated Fixes #10599 Fixes #9477 Fixes #9257 Fixes #9066 Fixes #8867 Fixes #8671 Fixes #8505 Fixes #7885 Fixes #7041 Closes gh-1017
* Build: Fix typoRafael Xavier de Souza2014-11-251-1/+1
| | | | | | | Amend "Build: Remove manifest files; move metadata to source files" b5f1ffdea4c3c4b41936e56d4cb23ca8acb2aaa8 Ref gh-1379
* Build: Remove manifest files; move metadata to source filesScott González2014-11-1037-71/+258
| | | | Closes gh-1379
* Draggable: Ensure parent is correct after dragging through sortableMike Sherov2014-11-081-2/+6
| | | | Fixes #10669
* Droppable: Remove $.ui.intersect()Mike Sherov2014-11-051-4/+4
| | | | Fixes #10534
* Tabs: Suppress automatic activation when navigating with COMMANDScott González2014-11-041-2/+3
| | | | | Fixes #9621 Closes gh-1383
* Selectmenu: Copy title attributesFelix Nagel2014-11-041-2/+5
| | | | | Fixes #10435 Closes gh-1298
* Selectmenu: Properly parse value from optionsScott González2014-11-041-1/+1
| | | | Fixes #10684
* Sortable: Redetermine floating flag when recalculating positionsTJ VanToll2014-11-041-5/+5
| | | | | | | | | This addresses a bug where users initialize empty sortable lists are add items dynamically. In this situation refresh() should recognize the position and orientation of the new items. Fixes #7498 Closes gh-1381
* Selectmenu: Introduce _renderButtonItem() methodFelix Nagel2014-11-041-18/+37
| | | | | Fixes #10142 Closes gh-1299
* Theme: Carat should be named caretLisa Seacat DeLuca2014-11-031-6/+6
| | | | | Fixes #10683 Closes gh-1382
* Selectmenu: Re-add wrappers to menu itemsTJ VanToll2014-10-251-8/+11
|
* Autocomplete: Re-add wrappers to menu itemsTJ VanToll2014-10-251-1/+3
|
* Menu: Wrap menu items in a <div>TJ VanToll2014-10-251-26/+36
| | | | | | | This avoids styling issues where ui-state-focus rules apply to submenus. Fixes #10162 Closes gh-1342
* Datepicker: Fixed month names and firstDay value in Arabic localeMohammed Alshehri2014-10-221-6/+7
| | | | | Fixes #10035 Closes gh-1246
* Selectmenu: Remove broken tabindex codeScott González2014-10-221-3/+2
|
* All: Drop support for IE7Scott González2014-10-211-4/+0
| | | | | Fixes #9838 Closes gh-1365
* Core: Remove .zIndex()Scott González2014-10-201-29/+0
| | | | Fixes #9156
* Core: Removed .focus( delay )Scott González2014-10-201-16/+0
| | | | Fixes #9649
* DatePicker: datepicker_instActive released on instance destroyChen Eshchar2014-10-201-0/+4
| | | | | Fixes #10668 Closes gh-1362
* Selectmenu: Preserve text selection and button focus on clickScott González2014-10-161-3/+47
| | | | | Fixes #10639 Closes gh-1358
* Tooltip: Properly track hiding and closing for delegated tooltipsScott González2014-10-091-26/+36
| | | | | Fixes #10602 Closes gh-1353
* Slider: Don't allow a slider's value to exceed its maxJyoti Deka2014-10-081-1/+9
| | | | | Fixes #9376 Closes gh-1016
* Datepicker: Fix French localeScott González2014-10-071-1/+1
| | | | | | | Thanks Jérémy M Fixes #10651 Closes gh-1357
* Menu: Typeahead now accounts for leading whitespaceTrisha Crowley2014-10-071-1/+1
| | | | | Fixes #10649 Closes gh-1356
* Menu: Remove a redundant checkTJ VanToll2014-10-031-7/+3
| | | | Closes gh-1355
* Menu: Maintain focus on already selected item during typeaheadTJ VanToll2014-10-031-1/+1
| | | | | Fixes #10644 Closes gh-1354
* Menu: Filter out non-items when typingSimen Bekkhus2014-09-291-13/+17
| | | | | Fixes #10571 Closes gh-1329
* Datepicker: Fix currentText in Greek localeScott González2014-09-221-1/+1
| | | | | | | Thanks Nikos Kalogridis Fixes #10620 Closes gh-1349
* Menu: Ignore mouseenter events while typeahead is acticeJörn Zaefferer2014-08-271-0/+6
| | | | | | | Prevents focusing the wrong item when typeahead causes a scroll while the mouse is over an item in the menu. Fixes #10458
* Widget: Ensure window and document are defined in _getCreateOptions()Alexander Schmitz2014-08-271-4/+5
| | | | Closes gh-1320
* Sortable: cancelHelperRemoval only considers helper, not placeholderMike Sherov2014-08-261-16/+6
| | | | Refs #9675