Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
wiki.bernardino.org /
resources /
jquery.ui /
Delete
Unzip
Name
Size
Permission
Date
Action
i18n
[ DIR ]
drwxr-xr-x
2012-03-22 16:23
themes
[ DIR ]
drwxr-xr-x
2012-03-22 16:23
jquery.ui.accordion.js
15.88
KB
-rw-r--r--
2011-04-14 15:09
jquery.ui.autocomplete.js
16.14
KB
-rw-r--r--
2011-07-08 15:50
jquery.ui.button.js
10.05
KB
-rw-r--r--
2011-04-14 15:09
jquery.ui.core.js
7.92
KB
-rw-r--r--
2011-04-14 15:09
jquery.ui.datepicker.js
70.66
KB
-rw-r--r--
2011-04-20 01:45
jquery.ui.dialog.js
20.86
KB
-rw-r--r--
2011-05-29 20:00
jquery.ui.draggable.js
29.39
KB
-rw-r--r--
2011-04-14 15:09
jquery.ui.droppable.js
9.24
KB
-rw-r--r--
2011-04-14 15:09
jquery.ui.mouse.js
4.16
KB
-rw-r--r--
2011-04-14 15:09
jquery.ui.position.js
7.17
KB
-rw-r--r--
2011-04-14 15:09
jquery.ui.progressbar.js
2.29
KB
-rw-r--r--
2011-04-14 15:09
jquery.ui.resizable.js
25.72
KB
-rw-r--r--
2011-04-14 15:09
jquery.ui.selectable.js
6.68
KB
-rw-r--r--
2011-04-14 15:09
jquery.ui.slider.js
17.33
KB
-rw-r--r--
2011-04-14 15:09
jquery.ui.sortable.js
38.78
KB
-rw-r--r--
2011-04-14 15:09
jquery.ui.tabs.js
20.75
KB
-rw-r--r--
2011-04-14 15:09
jquery.ui.widget.js
6.7
KB
-rw-r--r--
2011-04-14 15:09
Save
Rename
/* * jQuery UI Progressbar 1.8.11 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * http://docs.jquery.com/UI/Progressbar * * Depends: * jquery.ui.core.js * jquery.ui.widget.js */ (function( $, undefined ) { $.widget( "ui.progressbar", { options: { value: 0, max: 100 }, min: 0, _create: function() { this.element .addClass( "ui-progressbar ui-widget ui-widget-content ui-corner-all" ) .attr({ role: "progressbar", "aria-valuemin": this.min, "aria-valuemax": this.options.max, "aria-valuenow": this._value() }); this.valueDiv = $( "<div class='ui-progressbar-value ui-widget-header ui-corner-left'></div>" ) .appendTo( this.element ); this.oldValue = this._value(); this._refreshValue(); }, destroy: function() { this.element .removeClass( "ui-progressbar ui-widget ui-widget-content ui-corner-all" ) .removeAttr( "role" ) .removeAttr( "aria-valuemin" ) .removeAttr( "aria-valuemax" ) .removeAttr( "aria-valuenow" ); this.valueDiv.remove(); $.Widget.prototype.destroy.apply( this, arguments ); }, value: function( newValue ) { if ( newValue === undefined ) { return this._value(); } this._setOption( "value", newValue ); return this; }, _setOption: function( key, value ) { if ( key === "value" ) { this.options.value = value; this._refreshValue(); if ( this._value() === this.options.max ) { this._trigger( "complete" ); } } $.Widget.prototype._setOption.apply( this, arguments ); }, _value: function() { var val = this.options.value; // normalize invalid value if ( typeof val !== "number" ) { val = 0; } return Math.min( this.options.max, Math.max( this.min, val ) ); }, _percentage: function() { return 100 * this._value() / this.options.max; }, _refreshValue: function() { var value = this.value(); var percentage = this._percentage(); if ( this.oldValue !== value ) { this.oldValue = value; this._trigger( "change" ); } this.valueDiv .toggleClass( "ui-corner-right", value === this.options.max ) .width( percentage.toFixed(0) + "%" ); this.element.attr( "aria-valuenow", value ); } }); $.extend( $.ui.progressbar, { version: "1.8.11" }); })( jQuery );