aboutsummaryrefslogtreecommitdiffstats
path: root/ui/widgets/button.js
Commit message (Collapse)AuthorAgeFilesLines
* All: Migrate away from deprecated/removed Core APIsMichał Gołębiowski-Owczarek2019-12-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Button: Fix backcompat when called on collection of mixed elementsAlexander Schmitz2017-05-021-14/+73
| | | | | Fixes #15109 Closes gh-1808
* Button: Fix call to `._toggleClass()`Scott González2015-10-261-1/+1
|
* 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.
* Button: TyposAlexander Schmitz2015-10-081-1/+3
|
* Button: address review commentsAlexander Schmitz2015-10-081-1/+2
|
* Spinner: Updates for new button widget and classes optionAlexander Schmitz2015-10-081-2/+1
|
* Button: Initial commit of button re-factorAlexander Schmitz2015-10-071-319/+278
| | | | | | Move to using element stats rather then js class states remove ui-button-text spans. Removed button set
* Button: Style updatesAlexander Schmitz2015-09-111-41/+45
| | | | Ref #14246
* Button: Move button into widgets folderAlexander Schmitz2015-08-081-0/+421
Ref #13885