User tests: Successful: Unsuccessful:
Pull Request for Issue #15569
Fixed attribute checks.
Status | New | ⇒ | Pending |
Category | ⇒ | Libraries |
Status | Pending | ⇒ | Fixed in Code Base |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2017-04-26 16:54:17 |
Closed_By | ⇒ | wilsonge | |
Labels |
Added:
?
|
Merging with two good tests. Thanks guys!
Yes, seems to be working properly for me too
@ggppdk @wilsonge @fevangelou unfortunately there is one more bug here:
these 2 lines https://github.com/joomla/joomla-cms/blob/staging/media/system/js/fields/calendar.js#L805-L806
needs to be moved before https://github.com/joomla/joomla-cms/blob/staging/media/system/js/fields/calendar.js#L804
Or we have:
if (this.params.showsTodayBtn) {
row = createElement("div", this.wrapper);
row.className = "buttons-wrapper btn-group";
and should be:
row = createElement("div", this.wrapper);
row.className = "buttons-wrapper btn-group";
if (this.params.showsTodayBtn) {
Will make PR tomorrow, unless someone else is faster
Tested and working OK:
before the change:
after the change: