MMCT TEAM
Server IP : 103.191.208.50  /  Your IP : 216.73.216.53
Web Server : LiteSpeed
System : Linux orion.herosite.pro 4.18.0-553.53.1.lve.el8.x86_64 #1 SMP Wed May 28 17:01:02 UTC 2025 x86_64
User : celkcksm ( 1031)
PHP Version : 7.4.33
Disable Function : show_source, system, shell_exec, passthru, popen, exec
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /home/celkcksm/hrms.ncriptech.com/public/backend/js/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/celkcksm/hrms.ncriptech.com/public/backend/js/timepicker.min.js
/*!
 * Bootstrap Timepicker
 * @author Amir Hussain
**/
var bstptid = '';
!function (t, i) {
    "function" == typeof define && define.amd ? define(["jquery"], i) : "object" == typeof exports ? module.exports = i(require("jquery")) : t.$ = i(t.jQuery)
}(this, function (t) {
    "use strict";
    var i = function (t) {
            return t >= 10 ? t + "" : "0" + t
        }, e = /^[0-9]{1,2}:[0-9]{1,2}$/, s = {}, n = function () {
        }, o = new Array(24).fill(null).map(function (t, e) {
            var s = i(e);
            return '<li class="cell-2 js-hour-cell" data-val="' + s + '">' + s + "</li>"
        }).join(""), c = new Array(12).fill(null).map(function (t, e) {
            var s = i(5 * e);
            return '<li class="cell-2 js-minute-cell" data-val="' + s + '">' + s + "</li>"
        }).join(""),
        l = t('<div class="timepicker">\t\t<div v-show class="title">Select Time</div>\t\t\t<div class="chose-all">\t\t\t\t<div class="handle">\t\t\t\t\t<div class="cell-4"><a class="icon-up js-plus-houer"></a></div>\t\t\t\t\t<div class="cell-2"></div>\t\t\t\t\t<div class="cell-4"><a class="icon-up js-plus-minute"></a></div>\t\t\t\t</div>\t\t\t\t<div class="text">\t\t\t\t\t<div class="cell-4"><a class="js-hour-show" title="选择时"></a></div>\t\t\t\t\t<div class="cell-2">:</div>\t\t\t\t\t<div class="cell-4"><a class="js-minute-show" title="Select Time"></a></div>\t\t\t\t</div>\t\t\t\t<div class="handle">\t\t\t\t\t<div class="cell-4"><a class="icon-down js-minus-houer"></a></div>\t\t\t\t\t<div class="cell-2"></div>\t\t\t\t\t<div class="cell-4"><a class="icon-down js-minus-minute"></a></div>\t\t\t\t</div>\t\t\t</div>\t\t\t<div class="chose-hour">\t\t\t\t<ul class="handle">' + o + '</ul>\t\t\t</div>\t\t\t<div class="chose-minute">\t\t\t\t<ul class="handle">' + c + "</ul>\t\t\t</div>\t\t</div>\t</div>");
    return l.find("a").attr("href", "javascript:void(0);"), s.content = l, s.title = l.find(".title"), s.choseAll = l.find(".chose-all"), s.choseMinute = l.find(".chose-minute"), s.choseHour = l.find(".chose-hour"), s.hourShow = l.find(".js-hour-show"), s.minuteShow = l.find(".js-minute-show"), s.update = function () {
        return bstptid.val(i(this.hour) + ":" + i(this.minute)), this.minuteShow.text(i(this.minute)), this.hourShow.text(i(this.hour)), this.inputTarget.$timepickerUpdate(), this
    }, s.bindEvent = function () {
        var t = this;
        t.hasBind || (t.hasBind = !0, this.content.on("click", ".js-minus-minute", function () {
            t.minute <= 0 ? t.minute = 59 : t.minute--, t.update()
        }).on("click", ".js-plus-minute", function () {
            t.minute >= 59 ? t.minute = 0 : t.minute++, t.update()
        }).on("click", ".js-plus-houer", function () {
            t.hour >= 23 ? t.hour = 0 : t.hour++, t.update()
        }).on("click", ".js-minus-houer", function () {
            t.hour <= 0 ? t.hour = 23 : t.hour--, t.update()
        }).on("click", ".js-minute-cell", function () {
            t.minute = +this.getAttribute("data-val"), t.update(), t.choseMinute.hide(), t.choseAll.show(), t.title.text("Select Time")
        }).on("click", ".js-hour-cell", function () {
            t.hour = +this.getAttribute("data-val"), t.update(), t.choseHour.hide(), t.choseAll.show(), t.title.text("Select Time")
        }).on("click", function (t) {
            t.stopPropagation()
        }), t.hourShow.on("click", function () {
            t.choseAll.hide(), t.choseHour.show(), t.title.text("Select Time")
        }), t.minuteShow.on("click", function () {
            t.choseAll.hide(), t.choseMinute.show(), t.title.text("Select Time")
        }))
    }, t.timepicker = s, t.fn.timepicker = function (i) {
        var s, o, c = this, l = t.timepicker, u = t("html");
        if (this[0].nodeName && "INPUT" === this[0].nodeName) return this.$timepickerUpdate = n, this.off("click").on("click", function (i) {
            var n = this.value;
            bstptid = $(this);
            e.test(n) ? (n = n.split(":"), s = +n[0], o = +n[1]) : (n = new Date, s = n.getHours(), o = n.getMinutes());
            if ($(this).closest('table').length > 0) {
                var pos = $(this).offset();
                var h = pos.left + "px", a = pos.top + this.offsetHeight + "px";
            } else {
                var h = this.offsetLeft + "px", a = this.offsetTop + this.offsetHeight + "px";
            }
            l.inputTarget = c, l.content.appendTo(this.offsetParent).css({
                left: h,
                top: a
            }), l.hour = s, l.minute = o, l.choseAll.show(), l.choseHour.hide(), l.choseMinute.hide(), l.update(), t.timepicker.bindEvent(), i.stopPropagation(), u.one("click", function () {
                l.content.off().remove(), l.hasBind = !1
            })
        }), this.off("keydown").on("keydown", function () {
            return !1
        }), this.update = function (i) {
            t.isFunction(i) ? this.$timepickerUpdate = i : this.$timepickerUpdate = n
        }, this
    }, t
});


MMCT - 2023