MediaWiki:Tabs.js: Difference between revisions

Jump to navigation Jump to search
Want an adless experience? Log in or Create an account.
m (didn't mean to leave that in there.)
mNo edit summary
Line 14: Line 14:
for( var i = 0; i < tabcontents.length; ++i ) {
for( var i = 0; i < tabcontents.length; ++i ) {
var tabs = getChildrenByTagName(tabcontents[i], "UL");
var tabs = getChildrenByTagName(tabcontents[i], "UL");
console.log(tabs);
for( var j = 0; j < tabs.length; ++j ) {
for( var j = 0; j < tabs.length; ++j ) {
console.log(tabs[j]);
/* Move from tabcontents ul to tab ul */
/* Move from tabcontents ul to tab ul */
destinations[i].firstChild.appendChild(tabs[j].firstChild);
destinations[i].firstChild.appendChild(tabs[j].firstChild);