From 297f564b1dfdd4d01f38563f6f6d3ef1469fa589 Mon Sep 17 00:00:00 2001 From: Shannon Date: Thu, 16 Oct 2014 14:20:38 +1000 Subject: [PATCH] removed the min version, we minify anyways. --- .../bootstrap-datetimepicker.min.js.bak | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/Umbraco.Web.UI.Client/lib/datetimepicker/bootstrap-datetimepicker.min.js.bak diff --git a/src/Umbraco.Web.UI.Client/lib/datetimepicker/bootstrap-datetimepicker.min.js.bak b/src/Umbraco.Web.UI.Client/lib/datetimepicker/bootstrap-datetimepicker.min.js.bak deleted file mode 100644 index 228ea7073c..0000000000 --- a/src/Umbraco.Web.UI.Client/lib/datetimepicker/bootstrap-datetimepicker.min.js.bak +++ /dev/null @@ -1,27 +0,0 @@ -/** - * @license - * ========================================================= - * bootstrap-datetimepicker.js - * http://www.eyecon.ro/bootstrap-datepicker - * forked to: https://github.com/perploug/bootstrap-datetimepicker - * ========================================================= - * Copyright 2012 Stefan Petre - * - * Contributions: - * - Andrew Rowls - * - Thiago de Arruda - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ========================================================= - */ -(function (e) { function c(e) { return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&") } function h(e, t, n) { if (t < e.length) return e; else return Array(t - e.length + 1).join(n || " ") + e } function p(e, t, n, r, i, s) { if (t && n) { return '" } else if (n) { return '" } else { return '" } } function d() { return new Date(Date.UTC.apply(Date, arguments)) } var t = window.orientation != undefined; var n = function (e, t) { this.id = i++; this.init(e, t) }; var r = function (e) { if (typeof e === "string") { return new Date(e) } return e }; n.prototype = { constructor: n, init: function (t, n) { var r; if (!(n.pickTime || n.pickDate)) throw new Error("Must choose at least one picker"); this.options = n; this.$element = e(t); this.language = n.language in s ? n.language : "en"; this.pickDate = n.pickDate; this.pickTime = n.pickTime; this.isInput = this.$element.is("input"); this.component = false; if (this.$element.find(".input-append") || this.$element.find(".input-prepend")) this.component = this.$element.find(".add-on"); this.format = n.format; if (!this.format) { if (this.isInput) this.format = this.$element.data("format"); else this.format = this.$element.find("input").data("format"); if (!this.format) this.format = "MM/dd/yyyy" } this._compileFormat(); if (this.component) { r = this.component.find("i") } if (this.pickTime) { if (r && r.length) this.timeIcon = r.data("time-icon"); if (!this.timeIcon) this.timeIcon = "icon-time"; r.addClass(this.timeIcon) } if (this.pickDate) { if (r && r.length) this.dateIcon = r.data("date-icon"); if (!this.dateIcon) this.dateIcon = "icon-calendar"; r.removeClass(this.timeIcon); r.addClass(this.dateIcon) } var i = e(p(this.timeIcon, n.pickDate, n.pickTime, n.pick12HourFormat, n.pickSeconds, n.collapse)); this.widget = i.appendTo(this.$element); this.minViewMode = n.minViewMode || this.$element.data("date-minviewmode") || 0; if (typeof this.minViewMode === "string") { switch (this.minViewMode) { case "months": this.minViewMode = 1; break; case "years": this.minViewMode = 2; break; default: this.minViewMode = 0; break } } this.viewMode = n.viewMode || this.$element.data("date-viewmode") || 0; if (typeof this.viewMode === "string") { switch (this.viewMode) { case "months": this.viewMode = 1; break; case "years": this.viewMode = 2; break; default: this.viewMode = 0; break } } this.startViewMode = this.viewMode; this.weekStart = n.weekStart || this.$element.data("date-weekstart") || 0; this.weekEnd = this.weekStart === 0 ? 6 : this.weekStart - 1; this.setStartDate(n.startDate || this.$element.data("date-startdate")); this.setEndDate(n.endDate || this.$element.data("date-enddate")); this.fillDow(); this.fillMonths(); this.fillHours(); this.fillMinutes(); this.fillSeconds(); this.update(); this.showMode(); this._attachDatePickerEvents() }, show: function (e) { this.widget.show(); this.height = this.component ? this.component.outerHeight() : this.$element.outerHeight(); this.place(); this.$element.trigger({ type: "show", date: this._date }); this._attachDatePickerGlobalEvents(); if (e) { e.stopPropagation(); e.preventDefault() } }, disable: function () { this.$element.find("input").prop("disabled", true); this._detachDatePickerEvents() }, enable: function () { this.$element.find("input").prop("disabled", false); this._attachDatePickerEvents() }, hide: function (e) { if (e != undefined && e != this.viewMode) { return } var t = this.widget.find(".collapse"); for (var n = 0; n < t.length; n++) { var r = t.eq(n).data("collapse"); if (r && r.transitioning) return } this.widget.hide(); this.viewMode = this.startViewMode; this.showMode(); this.set(); this.$element.trigger({ type: "hide", date: this._date }); this._detachDatePickerGlobalEvents() }, set: function () { var e = ""; if (!this._unset) e = this.formatDate(this._date); if (!this.isInput) { if (this.component) { var t = this.$element.find("input"); t.val(e); this._resetMaskPos(t) } this.$element.data("date", e) } else { this.$element.val(e); this._resetMaskPos(this.$element) } }, setValue: function (e) { if (!e) { this._unset = true } else { this._unset = false } if (typeof e === "string") { this._date = this.parseDate(e) } else if (e) { this._date = new Date(e) } this.set(); this.viewDate = d(this._date.getUTCFullYear(), this._date.getUTCMonth(), 1, 0, 0, 0, 0); this.fillDate(); this.fillTime() }, getDate: function () { if (this._unset) return null; return new Date(this._date.valueOf()) }, setDate: function (e) { if (!e) this.setValue(null); else this.setValue(e.valueOf()) }, setStartDate: function (e) { if (e instanceof Date) { this.startDate = e } else if (typeof e === "string") { this.startDate = new d(e); if (!this.startDate.getUTCFullYear()) { this.startDate = -Infinity } } else { this.startDate = -Infinity } if (this.viewDate) { this.update() } }, setEndDate: function (e) { if (e instanceof Date) { this.endDate = e } else if (typeof e === "string") { this.endDate = new d(e); if (!this.endDate.getUTCFullYear()) { this.endDate = Infinity } } else { this.endDate = Infinity } if (this.viewDate) { this.update() } }, getLocalDate: function () { if (this._unset) return null; var e = this._date; return new Date(e.getUTCFullYear(), e.getUTCMonth(), e.getUTCDate(), e.getUTCHours(), e.getUTCMinutes(), e.getUTCSeconds(), e.getUTCMilliseconds()) }, setLocalDate: function (e) { if (!e) this.setValue(null); else this.setValue(Date.UTC(e.getFullYear(), e.getMonth(), e.getDate(), e.getHours(), e.getMinutes(), e.getSeconds(), e.getMilliseconds())) }, place: function () { var e = "absolute"; this.widget.css({ position: e, top: this.$element.height(), left: 5, right: "auto" }) }, notifyChange: function () { this.$element.trigger({ type: "changeDate", date: this.getDate(), localDate: this.getLocalDate() }) }, update: function (e) { var t = e; if (!t) { if (this.isInput) { t = this.$element.val() } else { t = this.$element.find("input").val() } if (t) { this._date = this.parseDate(t) } if (!this._date) { var n = new Date; this._date = d(n.getFullYear(), n.getMonth(), n.getDate(), n.getHours(), n.getMinutes(), n.getSeconds(), n.getMilliseconds()) } } this.viewDate = d(this._date.getUTCFullYear(), this._date.getUTCMonth(), 1, 0, 0, 0, 0); this.fillDate(); this.fillTime() }, fillDow: function () { var t = this.weekStart; var n = e(""); while (t < this.weekStart + 7) { n.append('' + s[this.language].daysMin[t++ % 7] + "") } this.widget.find(".datepicker-days thead").append(n) }, fillMonths: function () { var e = ""; var t = 0; while (t < 12) { e += '' + s[this.language].monthsShort[t++] + "" } this.widget.find(".datepicker-months td").append(e) }, fillDate: function () { var t = this.viewDate.getUTCFullYear(); var n = this.viewDate.getUTCMonth(); var r = d(this._date.getUTCFullYear(), this._date.getUTCMonth(), this._date.getUTCDate(), 0, 0, 0, 0); var i = typeof this.startDate === "object" ? this.startDate.getUTCFullYear() : -Infinity; var o = typeof this.startDate === "object" ? this.startDate.getUTCMonth() : -1; var u = typeof this.endDate === "object" ? this.endDate.getUTCFullYear() : Infinity; var a = typeof this.endDate === "object" ? this.endDate.getUTCMonth() : 12; this.widget.find(".datepicker-days").find(".disabled").removeClass("disabled"); this.widget.find(".datepicker-months").find(".disabled").removeClass("disabled"); this.widget.find(".datepicker-years").find(".disabled").removeClass("disabled"); this.widget.find(".datepicker-days th:eq(1)").text(s[this.language].months[n] + " " + t); var f = d(t, n - 1, 28, 0, 0, 0, 0); var l = v.getDaysInMonth(f.getUTCFullYear(), f.getUTCMonth()); f.setUTCDate(l); f.setUTCDate(l - (f.getUTCDay() - this.weekStart + 7) % 7); if (t == i && n <= o || t < i) { this.widget.find(".datepicker-days th:eq(0)").addClass("disabled") } if (t == u && n >= a || t > u) { this.widget.find(".datepicker-days th:eq(2)").addClass("disabled") } var c = new Date(f.valueOf()); c.setUTCDate(c.getUTCDate() + 42); c = c.valueOf(); var h = []; var p; var m; while (f.valueOf() < c) { if (f.getUTCDay() === this.weekStart) { p = e(""); h.push(p) } m = ""; if (f.getUTCFullYear() < t || f.getUTCFullYear() == t && f.getUTCMonth() < n) { m += " old" } else if (f.getUTCFullYear() > t || f.getUTCFullYear() == t && f.getUTCMonth() > n) { m += " new" } if (f.valueOf() === r.valueOf()) { m += " active" } if (f.valueOf() + 864e5 <= this.startDate) { m += " disabled" } if (f.valueOf() > this.endDate) { m += " disabled" } p.append('' + f.getUTCDate() + ""); f.setUTCDate(f.getUTCDate() + 1) } this.widget.find(".datepicker-days tbody").empty().append(h); var g = this._date.getUTCFullYear(); var y = this.widget.find(".datepicker-months").find("th:eq(1)").text(t).end().find("span").removeClass("active"); if (g === t) { y.eq(this._date.getUTCMonth()).addClass("active") } if (g - 1 < i) { this.widget.find(".datepicker-months th:eq(0)").addClass("disabled") } if (g + 1 > u) { this.widget.find(".datepicker-months th:eq(2)").addClass("disabled") } for (var b = 0; b < 12; b++) { if (t == i && o > b || t < i) { e(y[b]).addClass("disabled") } else if (t == u && a < b || t > u) { e(y[b]).addClass("disabled") } } h = ""; t = parseInt(t / 10, 10) * 10; var w = this.widget.find(".datepicker-years").find("th:eq(1)").text(t + "-" + (t + 9)).end().find("td"); this.widget.find(".datepicker-years").find("th").removeClass("disabled"); if (i > t) { this.widget.find(".datepicker-years").find("th:eq(0)").addClass("disabled") } if (u < t + 9) { this.widget.find(".datepicker-years").find("th:eq(2)").addClass("disabled") } t -= 1; for (var b = -1; b < 11; b++) { h += ' u ? " disabled" : "") + '">' + t + ""; t += 1 } w.html(h) }, fillHours: function () { var e = this.widget.find(".timepicker .timepicker-hours table"); e.parent().hide(); var t = ""; if (this.options.pick12HourFormat) { var n = 1; for (var r = 0; r < 3; r += 1) { t += ""; for (var i = 0; i < 4; i += 1) { var s = n.toString(); t += '' + h(s, 2, "0") + ""; n++ } t += "" } } else { var n = 0; for (var r = 0; r < 6; r += 1) { t += ""; for (var i = 0; i < 4; i += 1) { var s = n.toString(); t += '' + h(s, 2, "0") + ""; n++ } t += "" } } e.html(t) }, fillMinutes: function () { var e = this.widget.find(".timepicker .timepicker-minutes table"); e.parent().hide(); var t = ""; var n = 0; for (var r = 0; r < 5; r++) { t += ""; for (var i = 0; i < 4; i += 1) { var s = n.toString(); t += '' + h(s, 2, "0") + ""; n += 3 } t += "" } e.html(t) }, fillSeconds: function () { var e = this.widget.find(".timepicker .timepicker-seconds table"); e.parent().hide(); var t = ""; var n = 0; for (var r = 0; r < 5; r++) { t += ""; for (var i = 0; i < 4; i += 1) { var s = n.toString(); t += '' + h(s, 2, "0") + ""; n += 3 } t += "" } e.html(t) }, fillTime: function () { if (!this._date) return; var e = this.widget.find(".timepicker span[data-time-component]"); var t = e.closest("table"); var n = this.options.pick12HourFormat; var r = this._date.getUTCHours(); var i = "AM"; if (n) { if (r >= 12) i = "PM"; if (r === 0) r = 12; else if (r != 12) r = r % 12; this.widget.find(".timepicker [data-action=togglePeriod]").text(i) } r = h(r.toString(), 2, "0"); var s = h(this._date.getUTCMinutes().toString(), 2, "0"); var o = h(this._date.getUTCSeconds().toString(), 2, "0"); e.filter("[data-time-component=hours]").text(r); e.filter("[data-time-component=minutes]").text(s); e.filter("[data-time-component=seconds]").text(o) }, click: function (t) { t.stopPropagation(); t.preventDefault(); this._unset = false; var n = e(t.target).closest("span, td, th"); if (n.length === 1) { if (!n.is(".disabled")) { switch (n[0].nodeName.toLowerCase()) { case "th": switch (n[0].className) { case "switch": this.showMode(1); break; case "prev": case "next": var r = this.viewDate; var i = v.modes[this.viewMode].navFnc; var s = v.modes[this.viewMode].navStep; if (n[0].className === "prev") s = s * -1; r["set" + i](r["get" + i]() + s); this.fillDate(); this.set(); break } break; case "span": if (n.is(".month")) { var o = n.parent().find("span").index(n); this.viewDate.setUTCMonth(o) } else { var u = parseInt(n.text(), 10) || 0; this.viewDate.setUTCFullYear(u) } if (this.viewMode !== 0) { this._date = d(this.viewDate.getUTCFullYear(), this.viewDate.getUTCMonth(), this.viewDate.getUTCDate(), this._date.getUTCHours(), this._date.getUTCMinutes(), this._date.getUTCSeconds(), this._date.getUTCMilliseconds()); this.notifyChange() } this.showMode(-1); this.fillDate(); this.set(); break; case "td": if (n.is(".day")) { var a = parseInt(n.text(), 10) || 1; var o = this.viewDate.getUTCMonth(); var u = this.viewDate.getUTCFullYear(); if (n.is(".old")) { if (o === 0) { o = 11; u -= 1 } else { o -= 1 } } else if (n.is(".new")) { if (o == 11) { o = 0; u += 1 } else { o += 1 } } this._date = d(u, o, a, this._date.getUTCHours(), this._date.getUTCMinutes(), this._date.getUTCSeconds(), this._date.getUTCMilliseconds()); this.viewDate = d(u, o, Math.min(28, a), 0, 0, 0, 0); this.fillDate(); this.set(); this.notifyChange() } break } } } }, actions: { incrementHours: function (e) { this._date.setUTCHours(this._date.getUTCHours() + 1) }, incrementMinutes: function (e) { this._date.setUTCMinutes(this._date.getUTCMinutes() + 1) }, incrementSeconds: function (e) { this._date.setUTCSeconds(this._date.getUTCSeconds() + 1) }, decrementHours: function (e) { this._date.setUTCHours(this._date.getUTCHours() - 1) }, decrementMinutes: function (e) { this._date.setUTCMinutes(this._date.getUTCMinutes() - 1) }, decrementSeconds: function (e) { this._date.setUTCSeconds(this._date.getUTCSeconds() - 1) }, togglePeriod: function (e) { var t = this._date.getUTCHours(); if (t >= 12) t -= 12; else t += 12; this._date.setUTCHours(t) }, showPicker: function () { this.widget.find(".timepicker > div:not(.timepicker-picker)").hide(); this.widget.find(".timepicker .timepicker-picker").show() }, showHours: function () { this.widget.find(".timepicker .timepicker-picker").hide(); this.widget.find(".timepicker .timepicker-hours").show() }, showMinutes: function () { this.widget.find(".timepicker .timepicker-picker").hide(); this.widget.find(".timepicker .timepicker-minutes").show() }, showSeconds: function () { this.widget.find(".timepicker .timepicker-picker").hide(); this.widget.find(".timepicker .timepicker-seconds").show() }, selectHour: function (t) { var n = e(t.target); var r = parseInt(n.text(), 10); if (this.options.pick12HourFormat) { var i = this._date.getUTCHours(); if (i >= 12) { if (r != 12) r = (r + 12) % 24 } else { if (r === 12) r = 0; else r = r % 12 } } this._date.setUTCHours(r); this.actions.showPicker.call(this) }, selectMinute: function (t) { var n = e(t.target); var r = parseInt(n.text(), 10); this._date.setUTCMinutes(r); this.actions.showPicker.call(this) }, selectSecond: function (t) { var n = e(t.target); var r = parseInt(n.text(), 10); this._date.setUTCSeconds(r); this.actions.showPicker.call(this) } }, doAction: function (t) { t.stopPropagation(); t.preventDefault(); if (!this._date) this._date = d(1970, 0, 0, 0, 0, 0, 0); var n = e(t.currentTarget).data("action"); var r = this.actions[n].apply(this, arguments); this.set(); this.fillTime(); this.notifyChange(); return r }, stopEvent: function (e) { e.stopPropagation(); e.preventDefault() }, keydown: function (t) { var n = this, r = t.which, i = e(t.target); if (r == 8 || r == 46) { setTimeout(function () { n._resetMaskPos(i) }) } }, keypress: function (t) { var n = t.which; if (n == 8 || n == 46) { return } var r = e(t.target); var i = String.fromCharCode(n); var s = r.val() || ""; s += i; var o = this._mask[this._maskPos]; if (!o) { return false } if (o.end != s.length) { return } if (!o.pattern.test(s.slice(o.start))) { s = s.slice(0, s.length - 1); while ((o = this._mask[this._maskPos]) && o.character) { s += o.character; this._maskPos++ } s += i; if (o.end != s.length) { r.val(s); return false } else { if (!o.pattern.test(s.slice(o.start))) { r.val(s.slice(0, o.start)); return false } else { r.val(s); this._maskPos++; return false } } } else { this._maskPos++ } }, change: function (t) { var n = e(t.target); var r = n.val(); if (this._formatPattern.test(r)) { this.update(); this.setValue(this._date.getTime()); this.notifyChange(); this.set() } else if (r && r.trim()) { this.setValue(this._date.getTime()); if (this._date) this.set(); else n.val("") } else { if (this._date) { this.setValue(null); this.notifyChange(); this._unset = true } } this._resetMaskPos(n) }, showMode: function (e) { if (e) { this.viewMode = Math.max(this.minViewMode, Math.min(2, this.viewMode + e)) } this.widget.find(".datepicker > div").hide().filter(".datepicker-" + v.modes[this.viewMode].clsName).show() }, destroy: function () { this._detachDatePickerEvents(); this._detachDatePickerGlobalEvents(); this.widget.remove(); this.$element.removeData("datetimepicker"); this.component.removeData("datetimepicker") }, formatDate: function (e) { return this.format.replace(l, function (t) { var n, r, i, s = t.length; if (t === "ms") s = 1; r = o[t].property; if (r === "Hours12") { i = e.getUTCHours(); if (i === 0) i = 12; else if (i !== 12) i = i % 12 } else if (r === "Period12") { if (e.getUTCHours() >= 12) return "PM"; else return "AM" } else if (r === "UTCYear") { i = e.getUTCFullYear(); i = i.toString().substr(2) } else { n = "get" + r; i = e[n]() } if (n === "getUTCMonth") i = i + 1; return h(i.toString(), s, "0") }) }, parseDate: function (e) { var t, n, r, i, s, o = {}; if (!(t = this._formatPattern.exec(e))) return null; for (n = 1; n < t.length; n++) { r = this._propertiesByIndex[n]; if (!r) continue; s = t[n]; if (/^\d+$/.test(s)) s = parseInt(s, 10); o[r] = s } return this._finishParsingDate(o) }, _resetMaskPos: function (e) { var t = e.val(); for (var n = 0; n < this._mask.length; n++) { if (this._mask[n].end > t.length) { this._maskPos = n; break } else if (this._mask[n].end === t.length) { this._maskPos = n + 1; break } } }, _finishParsingDate: function (e) { var t, n, r, i, s, o, u; t = e.UTCFullYear; if (e.UTCYear) t = 2e3 + e.UTCYear; if (!t) t = 1970; if (e.UTCMonth) n = e.UTCMonth - 1; else n = 0; r = e.UTCDate || 1; i = e.UTCHours || 0; s = e.UTCMinutes || 0; o = e.UTCSeconds || 0; u = e.UTCMilliseconds || 0; if (e.Hours12) { i = e.Hours12 } if (e.Period12) { if (/pm/i.test(e.Period12)) { if (i != 12) i = (i + 12) % 24 } else { i = i % 12 } } return d(t, n, r, i, s, o, u) }, _compileFormat: function () { var e, t, n = [], r = [], i = this.format, s = {}, u = 0, a = 0; while (e = f.exec(i)) { t = e[0]; if (t in o) { u++; s[u] = o[t].property; n.push("\\s*" + o[t].getPattern(this) + "\\s*"); r.push({ pattern: new RegExp(o[t].getPattern(this)), property: o[t].property, start: a, end: a += t.length }) } else { n.push(c(t)); r.push({ pattern: new RegExp(c(t)), character: t, start: a, end: ++a }) } i = i.slice(t.length) } this._mask = r; this._maskPos = 0; this._formatPattern = new RegExp("^\\s*" + n.join("") + "\\s*$"); this._propertiesByIndex = s }, _attachDatePickerEvents: function () { var t = this; this.widget.on("click", ".datepicker *", e.proxy(this.click, this)); this.widget.on("click", "[data-action]", e.proxy(this.doAction, this)); this.widget.on("mousedown", e.proxy(this.stopEvent, this)); if (this.pickDate && this.pickTime) { this.widget.on("click.togglePicker", ".accordion-toggle", function (n) { n.stopPropagation(); var r = e(this); var i = r.closest("ul"); var s = i.find(".collapse.in"); var o = i.find(".collapse:not(.in)"); if (s && s.length) { var u = s.data("collapse"); if (u && u.transitioning) return; s.collapse("hide"); o.collapse("show"); r.find("i").toggleClass(t.timeIcon + " " + t.dateIcon); t.$element.find(".add-on i").toggleClass(t.timeIcon + " " + t.dateIcon) } }) } if (this.isInput) { this.$element.on({ focus: e.proxy(this.show, this), change: e.proxy(this.change, this) }); if (this.options.maskInput) { this.$element.on({ keydown: e.proxy(this.keydown, this), keypress: e.proxy(this.keypress, this) }) } } else { this.$element.on({ change: e.proxy(this.change, this) }, "input"); if (this.options.maskInput) { this.$element.on({ keydown: e.proxy(this.keydown, this), keypress: e.proxy(this.keypress, this) }, "input") } if (this.component) { this.component.on("click", e.proxy(this.show, this)) } else { this.$element.on("click", e.proxy(this.show, this)) } } }, _attachDatePickerGlobalEvents: function () { e(window).on("resize.datetimepicker" + this.id, e.proxy(this.place, this)); if (!this.isInput) { e(document).on("mousedown.datetimepicker" + this.id, e.proxy(this.hide, this)) } }, _detachDatePickerEvents: function () { this.widget.off("click", ".datepicker *", this.click); this.widget.off("click", "[data-action]"); this.widget.off("mousedown", this.stopEvent); if (this.pickDate && this.pickTime) { this.widget.off("click.togglePicker") } if (this.isInput) { this.$element.off({ focus: this.show, change: this.change }); if (this.options.maskInput) { this.$element.off({ keydown: this.keydown, keypress: this.keypress }) } } else { this.$element.off({ change: this.change }, "input"); if (this.options.maskInput) { this.$element.off({ keydown: this.keydown, keypress: this.keypress }, "input") } if (this.component) { this.component.off("click", this.show) } else { this.$element.off("click", this.show) } } }, _detachDatePickerGlobalEvents: function () { e(window).off("resize.datetimepicker" + this.id); if (!this.isInput) { e(document).off("mousedown.datetimepicker" + this.id) } }, _isInFixed: function () { if (this.$element) { var t = this.$element.parents(); var n = false; for (var r = 0; r < t.length; r++) { if (e(t[r]).css("position") == "fixed") { n = true; break } } return n } else { return false } } }; e.fn.datetimepicker = function (t, r) { return this.each(function () { var i = e(this), s = i.data("datetimepicker"), o = typeof t === "object" && t; if (!s) { i.data("datetimepicker", s = new n(this, e.extend({}, e.fn.datetimepicker.defaults, o))) } if (typeof t === "string") s[t](r) }) }; e.fn.datetimepicker.defaults = { maskInput: false, pickDate: true, pickTime: true, pick12HourFormat: false, pickSeconds: true, startDate: -Infinity, endDate: Infinity, collapse: true }; e.fn.datetimepicker.Constructor = n; var i = 0; var s = e.fn.datetimepicker.dates = { en: { days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"], daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"], daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"], months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"] } }; var o = { dd: { property: "UTCDate", getPattern: function () { return "(0?[1-9]|[1-2][0-9]|3[0-1])\\b" } }, MM: { property: "UTCMonth", getPattern: function () { return "(0?[1-9]|1[0-2])\\b" } }, yy: { property: "UTCYear", getPattern: function () { return "(\\d{2})\\b" } }, yyyy: { property: "UTCFullYear", getPattern: function () { return "(\\d{4})\\b" } }, hh: { property: "UTCHours", getPattern: function () { return "(0?[0-9]|1[0-9]|2[0-3])\\b" } }, mm: { property: "UTCMinutes", getPattern: function () { return "(0?[0-9]|[1-5][0-9])\\b" } }, ss: { property: "UTCSeconds", getPattern: function () { return "(0?[0-9]|[1-5][0-9])\\b" } }, ms: { property: "UTCMilliseconds", getPattern: function () { return "([0-9]{1,3})\\b" } }, HH: { property: "Hours12", getPattern: function () { return "(0?[1-9]|1[0-2])\\b" } }, PP: { property: "Period12", getPattern: function () { return "(AM|PM|am|pm|Am|aM|Pm|pM)\\b" } } }; var u = []; for (var a in o) u.push(a); u[u.length - 1] += "\\b"; u.push("."); var f = new RegExp(u.join("\\b|")); u.pop(); var l = new RegExp(u.join("\\b|"), "g"); var v = { modes: [{ clsName: "days", navFnc: "UTCMonth", navStep: 1 }, { clsName: "months", navFnc: "UTCFullYear", navStep: 1 }, { clsName: "years", navFnc: "UTCFullYear", navStep: 10 }], isLeapYear: function (e) { return e % 4 === 0 && e % 100 !== 0 || e % 400 === 0 }, getDaysInMonth: function (e, t) { return [31, v.isLeapYear(e) ? 29 : 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31][t] }, headTemplate: "" + "" + '‹' + '' + '›' + "" + "", contTemplate: '' }; v.template = '
' + '' + v.headTemplate + "" + "
" + "
" + '
' + '' + v.headTemplate + v.contTemplate + "
" + "
" + '
' + '' + v.headTemplate + v.contTemplate + "
" + "
"; var m = { hourTemplate: '', minuteTemplate: '', secondTemplate: '' }; m.getTemplate = function (e, t) { return '
' + '" + "" + '' + '' + '' + (t ? '' + '' : "") + (e ? '' : "") + "" + "" + " " + '' + " " + (t ? '' + "" : "") + (e ? '' + "" : "") + "" + "" + '' + '' + '' + (t ? '' + '' : "") + (e ? '' : "") + "" + "
" + m.hourTemplate + ":" + m.minuteTemplate + ":" + m.secondTemplate + "" + '' + "
" + "
" + '
' + '' + "
" + "
" + '
' + '' + "
" + "
" + (t ? '
' + '' + "
" + "
" : "") } })(window.jQuery) \ No newline at end of file