מדיה ויקי:NewScripts.js: הבדלים בין גרסאות בדף
מתוך מכביפדיה
אין תקציר עריכה
אין תקציר עריכה
שורה 13: שורה 13:
         $(this).toggleClass(`nmpDesignBoxTitleBordersOnHide`);
         $(this).toggleClass(`nmpDesignBoxTitleBordersOnHide`);
     });
     });
    $(`.nmpDesignBoxTitleContainer:even`).addClass(`nmpDesignBoxTitleContainerEven`);
    $(`.nmpDesignBoxTitleContainer:odd`).addClass(`nmpDesignBoxTitleContainerOdd`);
})
})

גרסה מ־15:20, 6 באוקטובר 2020

/**************************************************

        DESIGN BOX (for page`s box & text box)
    Date: 05/10/2020
    Made by: Oren

**************************************************/

$(document).ready(function() {
    $(`.nmpDesignBoxTitleContainer`).click(function(){
        $(this).closest(`.nmpDesignBoxContainer`).find(`i`).toggleClass(`nmpDesignBoxHideShowTogglerActive`);
        $(this).closest(`.nmpDesignBoxContainer`).find(`.nmpDesignBoxText`).fadeToggle();
        $(this).toggleClass(`nmpDesignBoxTitleBordersOnHide`);
     });
})