aboutsummaryrefslogtreecommitdiffstats
path: root/demos
Commit message (Collapse)AuthorAgeFilesLines
* Progressbar: Update demos to use AMDAlexander Schmitz2015-07-214-33/+8
| | | | Ref #10119
* Position: Update demos to use AMDAlexander Schmitz2015-07-212-16/+4
| | | | Ref #10119
* Menu: Update demos to use AMDAlexander Schmitz2015-07-213-24/+6
| | | | Ref #10119
* Effects: Update demos to use AMDAlexander Schmitz2015-07-2110-106/+21
| | | | Ref #10119
* Droppable: Update demos to use AMDAlexander Schmitz2015-07-216-58/+13
| | | | Ref #10119
* Draggable: Update to demos to use AMDAlexander Schmitz2015-07-2110-81/+20
| | | | Ref #10119
* Dialog: Switch demos to use AMDAlexander Schmitz2015-07-215-63/+10
| | | | Ref #10119
* Autocomplete: Update demos to use AMDAlexander Schmitz2015-07-2112-135/+45
| | | | Ref #10119
* Datepicker: Update localization demo to use i18n files from ui folderAlexander Schmitz2015-07-215-147/+1
| | | | Ref #10119
* Datepicker: Use new demos infrastructureAlexander Schmitz2015-07-2118-113/+32
| | | | Ref #10119
* Accordion: Use new demos infrastructureAlexander Schmitz2015-07-218-202/+13
| | | | Ref #10119
* Demos: Fixup correct nameAlexander Schmitz2015-07-211-1/+1
|
* Demos: Add new infrastructure using a require.js bootstrapAlexander Schmitz2015-07-212-0/+64
| | | | | Fixes #10119 Closes gh-1557
* Progressbar: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-201-2/+2
|
* Position: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-202-5/+5
|
* Effects: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-2010-10/+10
|
* Widget: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-201-2/+2
|
* Tooltip: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-202-3/+3
|
* Tabs: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-201-4/+4
|
* Spinner: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-204-7/+7
|
* Sortable: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-201-1/+1
|
* Slider: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-201-1/+1
|
* Droppable: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-201-1/+1
|
* Dialog: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-201-1/+1
|
* Datepicker: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-203-3/+3
|
* Button: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-203-5/+5
|
* Autocomplete: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-203-6/+6
|
* Accordion: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-202-6/+6
|
* Slider: Remove scrollbar demoScott González2015-04-221-131/+0
| | | | | Custom scrollbars are often a bad idea and this was a particularly minimal, and therefore terrible, implementation.
* Autocomplete: Cleanup remote-jsonp demoJörn Zaefferer2015-04-201-18/+11
| | | | | | | Fix handling of empty response, remove silly open/close handlers, fix select callback, fix demo description. Closes gh-1542
* Selectmenu: Add a disabled-default option example to default demoJörn Zaefferer2015-04-081-0/+12
| | | | Ref gh-1520
* Menu: Update default demo, use product categoriesJörn Zaefferer2015-04-081-20/+18
| | | | | | | Makes it look like a navigation menu that can't be navigated, at least better than the random city names we had before. Ref #11641
* Droppable: Remove shopping cart demoAlexander Schmitz2015-03-111-96/+0
| | | | This has terrible UX that we shouldn't promote anymore.
* Tooltip: Add classes optionAlexander Schmitz2015-03-111-1/+3
| | | | | Ref #7053 Ref gh-1411
* Droppable: Add classes optionAlexander Schmitz2015-03-116-15/+33
| | | | | Ref #7053 Ref gh-1411
* Selectmenu: Support `width: false` and default to 14emScott González2015-03-053-9/+0
| | | | | | | | | | `width: null` still matches the width of the original element. `width: false` prevents an inline style from being set for the width. This makes it easy to set the width via a stylesheet and allows the use of any unit for setting the width, such as the new default of `14em`. Fixes #11198 Closes gh-1467
* Tabs: Use standard promise methods for jqXHRScott González2015-02-241-1/+1
| | | | | | | The old success(), error() and complete() methods have been deprecated for a while and have been removed in upstream master. Closes gh-1455
* Datepicker: Fix date range demo when entering values manuallyScott González2015-02-231-15/+28
| | | | | Fixes #11143 Closes gh-1454
* Theme: Improve default theme stylingJasper de Groot2015-01-271-1/+1
| | | | | | | | | | | | | | | | | | 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
* Effects: RewriteMike Sherov2014-12-107-13/+19
| | | | | | | | | | | | | | | | | | 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
* Dialog: Updating demo style based on changes to theme and demo CSSAlexander Schmitz2014-11-182-3/+4
| | | | | Fixes #10693 Closes #1385
* Easing: Fixed small typo in easing demoAnne-Gaelle Colom2014-11-171-1/+1
|
* Demos: Fix menu markup in split button demoJörn Zaefferer2014-11-071-3/+3
|
* Demos: Fix menu markup in tooltip video-player demoJörn Zaefferer2014-11-071-3/+3
|
* Selectmenu: Re-add wrappers to menu itemsTJ VanToll2014-10-251-4/+5
|
* Autocomplete: Re-add wrappers to menu itemsTJ VanToll2014-10-251-1/+1
|
* Menu: Wrap menu items in a <div>TJ VanToll2014-10-253-38/+56
| | | | | | | This avoids styling issues where ui-state-focus rules apply to submenus. Fixes #10162 Closes gh-1342
* Theme: Change default widget font-size to 1emTJ VanToll2014-10-242-4/+0
| | | | | Fixes #10131 Closes gh-1374
* All: Drop support for IE7Scott González2014-10-211-4/+0
| | | | | Fixes #9838 Closes gh-1365
* Demos: Remove duplicate CSS propertiesBruno Pérel2014-10-202-2/+2
| | | | Closes gh-1363