MediaWiki:Common.js: Difference between revisions
No edit summary |
Targeting infoboxes differently. WM 1.45 likely broke this. Tags: Mobile edit Mobile web edit |
||
| Line 16: | Line 16: | ||
// Move infoboxes to the bottom of the article in mobile | // Move infoboxes to the bottom of the article in mobile | ||
if ($('body').hasClass('skin-minerva')) { | if ($('body').hasClass('skin-minerva')) { | ||
var infoboxes = $(' | var infoboxes = $('.mw-parser-output infobox-idea'); | ||
// Move them to the end of the section | // Move them to the end of the section | ||
$(' | $('.mw-parser-output').append(infoboxes); | ||
} | } | ||
}); | }); | ||