Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/clinic.corals.io/node_modules/flatpickr/dist/esm/plugins/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/clinic.corals.io/node_modules/flatpickr/dist/esm/plugins/scrollPlugin.js
import { getEventTarget } from "../utils/dom";
if (typeof window.CustomEvent !== "function") {
    function CustomEvent(typeArg, eventInitDict) {
        eventInitDict = eventInitDict || {
            bubbles: false,
            cancelable: false,
            detail: undefined,
        };
        const evt = document.createEvent("CustomEvent");
        evt.initCustomEvent(typeArg, eventInitDict.bubbles, eventInitDict.cancelable, eventInitDict.detail);
        return evt;
    }
    CustomEvent.prototype = window.Event.prototype;
    window.CustomEvent = CustomEvent;
}
function delta(e) {
    return Math.max(-1, Math.min(1, e.wheelDelta || -e.deltaY));
}
const scroll = (e) => {
    e.preventDefault();
    const ev = new CustomEvent("increment", {
        bubbles: true,
    });
    ev.delta = delta(e);
    getEventTarget(e).dispatchEvent(ev);
};
function scrollMonth(fp) {
    return (e) => {
        e.preventDefault();
        const mDelta = delta(e);
        fp.changeMonth(mDelta);
    };
}
function scrollPlugin() {
    return function (fp) {
        const monthScroller = scrollMonth(fp);
        return {
            onReady() {
                if (fp.timeContainer) {
                    fp.timeContainer.addEventListener("wheel", scroll);
                }
                fp.yearElements.forEach((yearElem) => yearElem.addEventListener("wheel", scroll));
                fp.monthElements.forEach((monthElem) => monthElem.addEventListener("wheel", monthScroller));
                fp.loadedPlugins.push("scroll");
            },
            onDestroy() {
                if (fp.timeContainer) {
                    fp.timeContainer.removeEventListener("wheel", scroll);
                }
                fp.yearElements.forEach((yearElem) => yearElem.removeEventListener("wheel", scroll));
                fp.monthElements.forEach((monthElem) => monthElem.removeEventListener("wheel", monthScroller));
            },
        };
    };
}
export default scrollPlugin;

Spamworldpro Mini