| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Fixes #15393
Closes gh-1958
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This helps fix issues that make tooltip tests sometimes fail when run against
jQuery 3.2 or newer due to timing differences.
Details:
* Add the `moduleAfterEach` function ensuring no timers are running.
* Attach this function via `common.testWidget`.
* Attach this function to most test suites.
* Add a tooltip test helper cleaning up leftover timers.
* Rename legacy `setup`/`teardown` hooks to `beforeEach`/`afterEach`.
Closes gh-1920
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
| |
Fixes #9356
Closes gh-1806
|
|
|
|
| |
Fixes #15098
|
|
|
|
|
| |
Fixes #15031
Closes gh-1732
|
| |
|
|
|
|
|
| |
Fixes #14938
Closes gh-1685
|
|
|
|
|
|
|
| |
Also removes the icon space as its not needed with a floated icon
Fixes #14914
Closes gh-1671
|
|
|
|
|
| |
Fixes #12236
Ref gh-1550
|
|
|
|
|
| |
IE8 still doesn't keep the space in the text (or HTML) representation.
We don't really care, so adding more trims in these tests as well.
|
| |
|
|
|
|
| |
This ensures consistency between different form elements
|
|
|
|
| |
Ref #14246
|
|
|
|
|
| |
Ref #14246
Ref gh-1588
|
|
|
|
| |
Ref #13885
|
|
|
|
|
| |
It appears that we must load require.js via a standard script tag in order
for it to work properly in IE8.
|
|
|
|
| |
Ref gh-1528
|
|
|
|
|
| |
Ref #10119
Ref gh-1528
|
|
|
|
|
|
| |
This module was created from our existing implementation.
Closes gh-1532
|
| |
|
|
|
|
|
| |
Ref #7053
Ref gh-1411
|
|
|
|
|
| |
Fixes #7053
Closes gh-1411
|
|
|
|
|
|
|
|
|
|
| |
`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
|
|
|
|
|
| |
As pointed out by jscs, after a esformatter run. The latter doesn't
address these, so fixing them manually.
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
Fixes #10662
Closes gh-1370
Closes gh-1423
|
|
|
|
|
| |
Fixes #10435
Closes gh-1298
|
|
|
|
|
| |
Fixes #10142
Closes gh-1299
|
| |
|
|
|
|
| |
Fixes #10563
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Fixes #10145
Closes gh-1296
|
|
|
|
|
|
|
|
|
| |
Selectmenu's test suite broke with b0e8380, which changed the padding
used by the menu widget. Selectmenu conditionally adds pixels to the
menu's width, and using closeEnough() accounts for that and the
rounding differences across browsers.
Closes gh-1275
|
|
|
|
|
|
|
| |
Put each external library into its own directory.
Move jquery.js to external.
Ref gh-1266
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Menus only use active items for nested menus which selectmenu doesn't support.
Selectmenu should only be working with focused items.
Ref gh-1224
|
| |
|
|
|
|
| |
Fixes #9757
|
| |
|
|
|
|
|
|
|
| |
- By executing https://gist.github.com/jzaefferer/893fcf70b7eebc1dc271;
Fixes #9464
Closes gh-1029
|