Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
turbolinks /
src /
turbolinks /
[ HOME SHELL ]
Name
Size
Permission
Action
BANNER.js.erb
113
B
-rw-r--r--
VERSION
6
B
-rw-r--r--
browser_adapter.js
2.63
KB
-rw-r--r--
compatibility.js
1.72
KB
-rw-r--r--
controller.js
12.17
KB
-rw-r--r--
error_renderer.js
1.94
KB
-rw-r--r--
head_details.js
4.25
KB
-rw-r--r--
helpers.js
3.13
KB
-rw-r--r--
history.js
2.46
KB
-rw-r--r--
http_request.js
4.52
KB
-rw-r--r--
index.js
751
B
-rw-r--r--
location.js
2.91
KB
-rw-r--r--
progress_bar.js
3.55
KB
-rw-r--r--
renderer.js
1.91
KB
-rw-r--r--
script_warning.js
889
B
-rw-r--r--
scroll_manager.js
1.43
KB
-rw-r--r--
snapshot.js
3.2
KB
-rw-r--r--
snapshot_cache.js
1.81
KB
-rw-r--r--
snapshot_renderer.js
7.32
KB
-rw-r--r--
start.js
845
B
-rw-r--r--
view.js
1.68
KB
-rw-r--r--
visit.js
8.16
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : progress_bar.js
// Generated by CoffeeScript 1.12.8 (function() { var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }; Turbolinks.ProgressBar = (function() { var ANIMATION_DURATION; ANIMATION_DURATION = 300; ProgressBar.defaultCSS = ".turbolinks-progress-bar {\n position: fixed;\n display: block;\n top: 0;\n left: 0;\n height: 3px;\n background: #0076ff;\n z-index: 9999;\n transition: width " + ANIMATION_DURATION + "ms ease-out, opacity " + (ANIMATION_DURATION / 2) + "ms " + (ANIMATION_DURATION / 2) + "ms ease-in;\n transform: translate3d(0, 0, 0);\n}"; function ProgressBar() { this.trickle = bind(this.trickle, this); this.stylesheetElement = this.createStylesheetElement(); this.progressElement = this.createProgressElement(); } ProgressBar.prototype.show = function() { if (!this.visible) { this.visible = true; this.installStylesheetElement(); this.installProgressElement(); return this.startTrickling(); } }; ProgressBar.prototype.hide = function() { if (this.visible && !this.hiding) { this.hiding = true; return this.fadeProgressElement((function(_this) { return function() { _this.uninstallProgressElement(); _this.stopTrickling(); _this.visible = false; return _this.hiding = false; }; })(this)); } }; ProgressBar.prototype.setValue = function(value) { this.value = value; return this.refresh(); }; ProgressBar.prototype.installStylesheetElement = function() { return document.head.insertBefore(this.stylesheetElement, document.head.firstChild); }; ProgressBar.prototype.installProgressElement = function() { this.progressElement.style.width = 0; this.progressElement.style.opacity = 1; document.documentElement.insertBefore(this.progressElement, document.body); return this.refresh(); }; ProgressBar.prototype.fadeProgressElement = function(callback) { this.progressElement.style.opacity = 0; return setTimeout(callback, ANIMATION_DURATION * 1.5); }; ProgressBar.prototype.uninstallProgressElement = function() { if (this.progressElement.parentNode) { return document.documentElement.removeChild(this.progressElement); } }; ProgressBar.prototype.startTrickling = function() { return this.trickleInterval != null ? this.trickleInterval : this.trickleInterval = setInterval(this.trickle, ANIMATION_DURATION); }; ProgressBar.prototype.stopTrickling = function() { clearInterval(this.trickleInterval); return this.trickleInterval = null; }; ProgressBar.prototype.trickle = function() { return this.setValue(this.value + Math.random() / 100); }; ProgressBar.prototype.refresh = function() { return requestAnimationFrame((function(_this) { return function() { return _this.progressElement.style.width = (10 + (_this.value * 90)) + "%"; }; })(this)); }; ProgressBar.prototype.createStylesheetElement = function() { var element; element = document.createElement("style"); element.type = "text/css"; element.textContent = this.constructor.defaultCSS; return element; }; ProgressBar.prototype.createProgressElement = function() { var element; element = document.createElement("div"); element.className = "turbolinks-progress-bar"; return element; }; return ProgressBar; })(); }).call(this);
Close