-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DEP Update jquery-ui in thirdparty folder #1424
DEP Update jquery-ui in thirdparty folder #1424
Conversation
4f6b08d
to
5601812
Compare
7388260
to
6da56a8
Compare
1d75b9b
to
6529629
Compare
|
||
// Allow opt-out via data element or entwine property. | ||
if($(el).data('ignoreTabState') || $(el).getIgnoreTabState()) return; | ||
|
||
selectedTabs.push({id:id, selected:$(el).tabs('option', 'selected')}); | ||
selectedTabs.push({id:id, selected:$(el).tabs('option', 'active')}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'selected' was renamed to 'active' - https://bugs.jqueryui.com/ticket/7135
@@ -889,12 +889,12 @@ $.entwine('ss', function($) { | |||
this.find('.cms-tabset,.ss-tabset').each(function(i, el) { | |||
var id = $(el).attr('id'); | |||
if(!id) return; // we need a unique reference | |||
if(!$(el).data('tabs')) return; // don't act on uninit'ed controls | |||
if(!$(el).data('uiTabs')) return; // don't act on uninit'ed controls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'tabs' was renamed to 'uiTabs' in jquery-ui 1.10 - I couldn't find a reference of where this was done, though console.log'ing $el.data()
showed it to now be 'uiTabs'
color: $body-color; | ||
font-size: 1em; | ||
border: 0; | ||
|
||
a { | ||
color: $link-color; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These CSS changes are effectively to revert some CSS additions that went into later versions of jquery-ui
25ee1c3
to
a7af0d3
Compare
@emteknetnz In the installer CI run you linked to, everything is failing... does that link need to be updated to a more recent run? Or does this PR legitimately break everything? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The cursor should be pointer
when hovering over tabs.
The icon alignment (super minor so not too fussed) and text colour of expandable composite fields is not correct.
before:
this PR:
The arrow icon on expandable composite fields disappears when expanding the field - it should not.
Everything else looks fine - and the reported regression is resolved.
a7af0d3
to
3adf74f
Compare
@GuySartorelli updated |
@emteknetnz Can you please respond to my question about the installer CI run? |
3adf74f
to
05f7103
Compare
05f7103
to
50e343a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, works great locally.
Released as 1.12.1 |
Issue #1423
jquery-ui v1.9.2 -> v1.13.2
This should have been upgraded as part of 1.12, and since there's an existing regression I think we should do a patch release in 1.12 rather than waiting for 1.13
Updated because of this answer https://stackoverflow.com/a/37925405 - javascript error matched what console error I saw after running
yarn dev
and replicating issueIssue could be replicated by