User:Spacebirdy/common.js

Hello, you have come here looking for the meaning of the word User:Spacebirdy/common.js. In DICTIOUS you will not only get to know all the dictionary meanings for the word User:Spacebirdy/common.js, but we will also tell you about its etymology, its characteristics and you will know how to say User:Spacebirdy/common.js in singular and plural. Everything you need to know about the word User:Spacebirdy/common.js you have here. The definition of the word User:Spacebirdy/common.js will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofUser:Spacebirdy/common.js, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
mw.loader.load('//meta.wikimedia.orghttps://en.wiktionary.org/w/index.php?title=User:Spacebirdy/altækt.js&action=raw&ctype=text/javascript');

function createNavToggle(navFrame){
    var navHead, navToggle, navContent;
    for (var j=0; j < navFrame.childNodes.length; j++) {
        var div = navFrame.childNodes;
        switch (div.className) {
            case 'NavHead':
                navHead = div;
                break;
            case 'NavContent':
                navContent = div;
                break;
        }
    }
    if (!navHead || !navContent)
        return;
    // Step 1, don't react when a subitem is clicked.
    for (var i=0; i<navHead.childNodes.length; i++) {
        var child = navHead.childNodes;
        if (child.nodeName == "A") {
            child.onclick = function (e)
            {
                if (e && e.stopPropagation)
                    e.stopPropagation();
                else
                    window.event.cancelBubble = true;
            }
        }
    }
    // Step 2, toggle visibility when bar is clicked.
    // NOTE This function was chosen due to some funny behaviour in Safari.
    navToggle = newNode('a', {href: 'javascript:(function(){})()'}, '');
    navHead.insertBefore(newNode('span', {'class': 'NavToggle'}, ''), navHead.firstChild);
 
    navHead.style.cursor = "pointer";
    navHead.onclick = VisibilityToggles.register(NavToggleCategory(navFrame),
        function show() {
            navToggle.innerHTML = NavigationBarHide;
            if (navContent)
                navContent.style.display = "block";
        },
        function hide() {
            navToggle.innerHTML = NavigationBarShow;
            if (navContent)
                navContent.style.display = "block";
        });
};