Linux rspmc 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
Server IP : 192.168.20.114 & Your IP : 216.73.216.34
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
/
var /
www /
html /
e-asuransi_ /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
alertjs
[ DIR ]
drwxrwxrwx
2023-03-10 14:53
amcharts
[ DIR ]
drwxrwxrwx
2023-03-10 14:53
bootstrap-multiselect
[ DIR ]
drwxrwxrwx
2023-03-10 14:53
chartjs-plugin
[ DIR ]
drwxrwxrwx
2023-03-10 14:53
ekios
[ DIR ]
drwxrwxrwx
2023-03-10 14:53
fileupload
[ DIR ]
drwxrwxrwx
2023-03-10 14:53
jpegcam
[ DIR ]
drwxrwxrwx
2023-03-10 14:53
js.sound
[ DIR ]
drwxrwxrwx
2023-03-10 14:53
literallycanvas
[ DIR ]
drwxrwxrwx
2023-03-10 14:53
nodejs
[ DIR ]
drwxrwxrwx
2023-03-10 14:53
notiflix
[ DIR ]
drwxrwxrwx
2023-03-10 14:53
orgchart
[ DIR ]
drwxrwxrwx
2023-03-10 14:53
passchecker
[ DIR ]
drwxrwxrwx
2023-03-10 14:53
toastr
[ DIR ]
drwxrwxrwx
2023-03-10 14:53
Chart.js
394.33
KB
-rwxrwxrwx
2023-03-10 14:53
accounting.js
14.64
KB
-rwxrwxrwx
2023-03-10 14:53
accounting.min.js
3.06
KB
-rwxrwxrwx
2023-03-10 14:53
accounting2.js
15.33
KB
-rwxrwxrwx
2023-03-10 14:53
chat.js
16.11
KB
-rwxrwxrwx
2023-03-10 14:53
datetime.js
1.49
KB
-rwxrwxrwx
2023-03-10 14:53
dropdownMulti.js
914
B
-rwxrwxrwx
2023-03-10 14:53
footpanel.js
2.84
KB
-rwxrwxrwx
2023-03-10 14:53
form.js
20.73
KB
-rwxrwxrwx
2023-03-10 14:53
form2.js
11.28
KB
-rwxrwxrwx
2023-03-10 14:53
howler.min.js
11.99
KB
-rwxrwxrwx
2023-03-10 14:53
integervalidation.js
411
B
-rwxrwxrwx
2023-03-10 14:53
ion.sound.min.js
12.54
KB
-rwxrwxrwx
2023-03-10 14:53
jquery-1.11.1.min.js
93.54
KB
-rwxrwxrwx
2023-03-10 14:53
jquery-1.3.2.js
117.79
KB
-rwxrwxrwx
2023-03-10 14:53
jquery.cookie.js
3.05
KB
-rwxrwxrwx
2023-03-10 14:53
jquery.infinitecarousel.js
27.69
KB
-rwxrwxrwx
2023-03-10 14:53
jquery.maskMoney.js
11.34
KB
-rwxrwxrwx
2023-03-10 14:53
jquery.maskedinput.js
7.04
KB
-rwxrwxrwx
2023-03-10 14:53
jquery.mtz.monthpicker.js
10.59
KB
-rwxrwxrwx
2023-03-10 14:53
jquery.popupoverlay.js
33.39
KB
-rwxrwxrwx
2023-03-10 14:53
jquery.smartWizard-2.0.js
15.62
KB
-rwxrwxrwx
2023-03-10 14:53
jquery.smartWizard-2.0.min.js
4.66
KB
-rwxrwxrwx
2023-03-10 14:53
jquery.taggd.js
8.93
KB
-rwxrwxrwx
2023-03-10 14:53
jquery.tiler.js
2.44
KB
-rwxrwxrwx
2023-03-10 14:53
jquery.treeview.js
8.07
KB
-rwxrwxrwx
2023-03-10 14:53
login.js
1.35
KB
-rwxrwxrwx
2023-03-10 14:53
loginTimer.js
840
B
-rwxrwxrwx
2023-03-10 14:53
mws.js
2.43
KB
-rwxrwxrwx
2023-03-10 14:53
realtimeClock.js
2.17
KB
-rwxrwxrwx
2023-03-10 14:53
socket.io.js
163.47
KB
-rwxrwxrwx
2023-03-10 14:53
suara.antrian.js
3.05
KB
-rwxrwxrwx
2023-03-10 14:53
tampilAntrian.js
1.8
KB
-rwxrwxrwx
2023-03-10 14:53
webcam.js
6.7
KB
-rwxrwxrwx
2023-03-10 14:53
Save
Rename
/** * jQuery Tiler plugin * * * @author John J. Camilleri * @version 1.0 */ (function($){ // Tile function $.fn.tile = function(opts) { // Default values var defaults = { widths: [300], // possible widths force_width: true, debug: false }; var options = $.extend(defaults, opts); // Get dimensions of container var container_width = this.width(); var container_height = this.height(); // DEBUG ONLY if (options.debug) this.parent().find('.info').html("Container W: "+container_width+", H: "+container_height); // TODO: Attach some handler in case the page/container is resized? // Delete any previous columns and return childs to container this.find('.jquery-tiler-column').each(function(i){ $(this).find('.jquery-tiler-block').appendTo( $(this).parent() ); $(this).remove(); }); // Divide the page up into columns var columns; if (options.widths.length == 1) { // Easy var how_many_cols = Math.floor( container_width / options.widths[0] ); for (var i = 0; i < how_many_cols; i++) { $('<div />') .addClass('jquery-tiler-column') .css({ 'float':'left', 'width':options.widths[0], }) .prependTo(this) } // Get hold of our new columns for later columns = this.find('.jquery-tiler-column'); } else { // We need to find the different widths present and make some intellignet // calculation of optimal number of columns and their width // MAJOR TODO.. } // Apply to each direct child of matching item this.children(':gt('+(how_many_cols-1)+')').each(function(natural_index) { var obj = $(this); // Stick some basic info in it if (options.debug) obj.html("Index: "+natural_index+", W: "+obj.outerWidth()+", H: "+obj.outerHeight()); // Choose which column is the shortest var col_index = 0; var min_height = $(columns[col_index]).outerHeight(); columns.each(function(i){ var this_height = $(this).outerHeight(); if (this_height < min_height) { min_height = this_height; col_index = i; } }); var column = $(columns[col_index]); // Fix it and move it to column obj .addClass('jquery-tiler-block') .css({'float':'none'}) .appendTo( column ); // Adjust the width from whatever it may have been? if (options.force_width) { obj .width(options.widths[0]-20) .wrap('<div style="width:100%;" />') } }); return this; }; })(jQuery);