aboutsummaryrefslogtreecommitdiffstats
path: root/ui/widgets/spinner.js
Commit message (Collapse)AuthorAgeFilesLines
* 1.13.21.13.2Michał Gołębiowski-Owczarek2022-07-141-2/+2
|
* Build: Migrate from JSHint & JSCS to ESLintMichał Gołębiowski-Owczarek2021-06-071-2/+5
| | | | | Fixes #15393 Closes gh-1958
* All: Migrate away from deprecated/removed Core APIsMichał Gołębiowski-Owczarek2019-12-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary of the changes: * Build: Add jQuery 3.2.0-3.4.1 to versions UI can be tested against * Build: Load jQuery & Migrate via HTTPS * Build: Add package-lock.json to .gitignore * Build: Update jQuery Migrate from 3.0.0 to 3.1.0 * Build: Allow to run tests against jQuery 3.x-git * Build: Fix formatting according to JSCS rules * Build: Disable JSCS for the inlined jQuery Color * All: Switch from $.isArray to Array.isArray (jQuery.isArray will be removed in jQuery 4.0) * All: Switch from `$.isFunction( x )` to `typeof x === "function"` (jQuery.isFunction will be removed in jQuery 4.0) * All: Inline jQuery.isWindow as it'll be removed in jQuery 4.0 * Effects: Fix a timing issue in a variable declaration. Previously, a jQuery object was created, chained & assigned to a variable that was then accessed in a callback used inside of this chained definition. Due to a timing difference in when the callback fired for the first time in latest jQuery master, it was being called before the variable was defined. * Tests: Make dialog & draggable unit tests less strict (newest jQuery returns fractional results in some cases, making comparisons fail when there's a tiny difference) * All: Migrate from $.trim to bare String.prototype.trim (jQuery.trim will be deprecated in jQuery 3.5) Closes gh-1901
* Spinner: Ignore `mousewheel` events when not focusedScott González2017-02-211-1/+5
| | | | | Fixes #15139 Closes gh-1794
* Spinner: Fix typoKyle Rosenberg2016-11-021-7/+7
| | | | Closes gh-1764
* Spinner: Fix line length violationsAlexander Schmitz2016-04-131-2/+4
| | | | Ref gh-1690
* All: Fix manifest issues for categories and CSS dependenciesJörn Zaefferer2015-10-231-3/+3
| | | | | | | Collapses "UI Core" and "Core" into just "Core". Fixes bad paths for CSS dependencies. Regressed when moving widgets into the widgets subfolder.
* Spinner: Address review commentsAlexander Schmitz2015-10-081-5/+2
|
* Spinner: Style updatesAlexander Schmitz2015-10-081-1/+1
|
* Spinner: Update markup for buttonsAlexander Schmitz2015-10-081-14/+13
|
* Spinner: Updates for new button widget and classes optionAlexander Schmitz2015-10-081-5/+7
|
* Spinner: Remove redundant handling of disabled option on createJörn Zaefferer2015-09-251-10/+7
| | | | | Ref #9151 Ref gh-1599
* All: Delegate to base `_getCreateOptions()`.Scott González2015-09-171-2/+2
| | | | | | | Ensures that any extensions to the base widget will be handled properly by individual widgets. Closes gh-1598
* Spinner: Update to use camelcase identifiersAlexander Schmitz2015-09-111-7/+7
|
* Spinner: Style updatesAlexander Schmitz2015-09-111-0/+8
| | | | Ref #14246
* Spinner: Style updatesAlexander Schmitz2015-08-211-11/+11
| | | | | Ref #14246 Ref gh-1588
* Spinner: Move spinner into widgets folderAlexander Schmitz2015-08-081-0/+570
Ref #13885