golden hour
/var/www/html/wp-content/plugins/Ultimate_VC_Addons/assets/js
⬆️ Go Up
Upload
File/Folder
Size
Actions
SmoothScroll-compatible.js
23.59 KB
Del
OK
SmoothScroll.js
11.18 KB
Del
OK
bootstrap-datetimepicker.js
48.95 KB
Del
OK
classie.js
2.44 KB
Del
OK
content-box.js
3.62 KB
Del
OK
count-timer.js
7.16 KB
Del
OK
countUp.js
6.03 KB
Del
OK
countdown-dependent.js
5.69 KB
Del
OK
countdown.js
34.48 KB
Del
OK
creative-link.js
3.04 KB
Del
OK
custom.js
36.61 KB
Del
OK
dual-button.js
21.72 KB
Del
OK
easy-ticker.js
4.38 KB
Del
OK
expandable-section.js
11.06 KB
Del
OK
fixto.js
24.9 KB
Del
OK
flip-box.js
8.48 KB
Del
OK
froogaloop2-min.js
1.73 KB
Del
OK
headings.js
4.68 KB
Del
OK
highlight-box.js
2.07 KB
Del
OK
hotspot-tooltipster.js
45.76 KB
Del
OK
hotspot.js
3.71 KB
Del
OK
ihover.js
2 KB
Del
OK
image-separator.js
623 B
Del
OK
index.php
86 B
Del
OK
info-banner.js
1.1 KB
Del
OK
info-box.js
609 B
Del
OK
info-circle.js
19.89 KB
Del
OK
jparallax.js
8.78 KB
Del
OK
jquery-appear.js
3.42 KB
Del
OK
jquery-ui-effect.js
32.1 KB
Del
OK
jquery-ui-labeledslider.js
4.59 KB
Del
OK
jquery-ui.js
192.36 KB
Del
OK
jquery.sticky-kit.js
7.9 KB
Del
OK
masonry.js
24.49 KB
Del
OK
mb-YTPlayer.js
118.78 KB
Del
OK
modal.js
14.41 KB
Del
OK
modernizr-custom.js
8.19 KB
Del
OK
range-slider-touch-punch.js
5.13 KB
Del
OK
range-slider.js
10.54 KB
Del
OK
slick-custom.js
6.01 KB
Del
OK
slick.js
40.99 KB
Del
OK
snap-svg.js
65.44 KB
Del
OK
sticky-section.js
12.24 KB
Del
OK
swatchbook.js
5.06 KB
Del
OK
tabs-accordion.js
19.31 KB
Del
OK
tabs.js
27.48 KB
Del
OK
teams.js
4.12 KB
Del
OK
tooltip.js
12.1 KB
Del
OK
typed.js
15.92 KB
Del
OK
ultimate-params.js
4.11 KB
Del
OK
ultimate_bg.js
75.98 KB
Del
OK
vc-fronteditor.js
362 B
Del
OK
vc-inline-editor.js
1.71 KB
Del
OK
vc_column.js
1.25 KB
Del
OK
vhparallax.js
7.72 KB
Del
OK
video-banner.js
1.89 KB
Del
OK
video_module.js
3.4 KB
Del
OK
Edit: countdown-dependent.js
/*! Simple JavaScript Inheritance * By John Resig http://ejohn.org/ * MIT Licensed. */ (function () { var j = false; window.JQClass = function () {}; JQClass.classes = {}; JQClass.extend = function extender(f) { var g = this.prototype; j = true; var h = new this(); j = false; for (var i in f) { h[i] = typeof f[i] == "function" && typeof g[i] == "function" ? (function (d, e) { return function () { var b = this._super; this._super = function (a) { return g[d].apply(this, a); }; var c = e.apply(this, arguments); this._super = b; return c; }; })(i, f[i]) : f[i]; } function JQClass() { if (!j && this._init) { this._init.apply(this, arguments); } } JQClass.prototype = h; JQClass.prototype.constructor = JQClass; JQClass.extend = extender; return JQClass; }; })(); (function ($) { JQClass.classes.JQPlugin = JQClass.extend({ name: "plugin", defaultOptions: {}, regionalOptions: {}, _getters: [], _getMarker: function () { return "is-" + this.name; }, _init: function () { $.extend(this.defaultOptions, (this.regionalOptions && this.regionalOptions[""]) || {}); var c = camelCase(this.name); $[c] = this; $.fn[c] = function (a) { var b = Array.prototype.slice.call(arguments, 1); if ($[c]._isNotChained(a, b)) { return $[c][a].apply($[c], [this[0]].concat(b)); } return this.each(function () { if (typeof a === "string") { if (a[0] === "_" || !$[c][a]) { throw "Unknown method: " + a; } $[c][a].apply($[c], [this].concat(b)); } else { $[c]._attach(this, a); } }); }; }, setDefaults: function (a) { $.extend(this.defaultOptions, a || {}); }, _isNotChained: function (a, b) { if (a === "option" && (b.length === 0 || (b.length === 1 && typeof b[0] === "string"))) { return true; } return $.inArray(a, this._getters) > -1; }, _attach: function (a, b) { a = $(a); if (a.hasClass(this._getMarker())) { return; } a.addClass(this._getMarker()); b = $.extend({}, this.defaultOptions, this._getMetadata(a), b || {}); var c = $.extend({ name: this.name, elem: a, options: b }, this._instSettings(a, b)); a.data(this.name, c); this._postAttach(a, c); this.option(a, b); }, _instSettings: function (a, b) { return {}; }, _postAttach: function (a, b) {}, _getMetadata: function (d) { try { var f = d.data(this.name.toLowerCase()) || ""; f = f.replace(/'/g, '"'); f = f.replace(/([a-zA-Z0-9]+):/g, function (a, b, i) { var c = f.substring(0, i).match(/"/g); return !c || c.length % 2 === 0 ? '"' + b + '":' : b + ":"; }); f = $.parseJSON("{" + f + "}"); for (var g in f) { var h = f[g]; if (typeof h === "string" && h.match(/^new Date\((.*)\)$/)) { f[g] = eval(h); } } return f; } catch (e) { return {}; } }, _getInst: function (a) { return $(a).data(this.name) || {}; }, option: function (a, b, c) { a = $(a); var d = a.data(this.name); if (!b || (typeof b === "string" && c == null)) { var e = (d || {}).options; return e && b ? e[b] : e; } if (!a.hasClass(this._getMarker())) { return; } var e = b || {}; if (typeof b === "string") { e = {}; e[b] = c; } this._optionsChanged(a, d, e); $.extend(d.options, e); }, _optionsChanged: function (a, b, c) {}, destroy: function (a) { a = $(a); if (!a.hasClass(this._getMarker())) { return; } this._preDestroy(a, this._getInst(a)); a.removeData(this.name).removeClass(this._getMarker()); }, _preDestroy: function (a, b) {}, }); function camelCase(c) { return c.replace(/-([a-z])/g, function (a, b) { return b.toUpperCase(); }); } $.JQPlugin = { createPlugin: function (a, b) { if (typeof a === "object") { b = a; a = "JQPlugin"; } a = camelCase(a); var c = camelCase(b.name); JQClass.classes[c] = JQClass.classes[a].extend(b); new JQClass.classes[c](); }, }; })(jQuery);
Save