Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
/**
* Theme: Ubold Admin Template
* Author: Coderthemes
* bootstrap tables
*/
$(document).ready(function () {
// BOOTSTRAP TABLE - CUSTOM TOOLBAR
// =================================================================
// Require Bootstrap Table
// http://bootstrap-table.wenzhixin.net.cn/
// =================================================================
var $table = $('#demo-custom-toolbar'), $remove = $('#demo-delete-row');
$table.on('check.bs.table uncheck.bs.table check-all.bs.table uncheck-all.bs.table', function () {
$remove.prop('disabled', !$table.bootstrapTable('getSelections').length);
});
$remove.click(function () {
var ids = $.map($table.bootstrapTable('getSelections'), function (row) {
return row.id
});
$table.bootstrapTable('remove', {
field: 'id',
values: ids
});
$remove.prop('disabled', true);
});
});
/**
* Hack for table loading issue - ideally this should be fixed in plugin code itself.
*/
$(window).load(function() {
$('[data-toggle="table"]').show();
});
// Sample format for Invoice Column.
// =================================================================
function invoiceFormatter(value, row) {
return '<a href="#" class="btn-link" > Order #' + value + '</a>';
}
// Sample Format for User Name Column.
// =================================================================
function nameFormatter(value, row) {
return '<a href="#" class="btn-link" > ' + value + '</a>';
}
// Sample Format for Order Date Column.
// =================================================================
function dateFormatter(value, row) {
var icon = row.id % 2 === 0 ? 'fa-star' : 'fa-user';
return '<span class="text-muted"> ' + value + '</span>';
}
// Sample Format for Order Status Column.
// =================================================================
function statusFormatter(value, row) {
var labelColor;
if (value == "Paid") {
labelColor = "success";
} else if (value == "Unpaid") {
labelColor = "warning";
} else if (value == "Shipped") {
labelColor = "info";
} else if (value == "Refunded") {
labelColor = "danger";
}
var icon = row.id % 2 === 0 ? 'fa-star' : 'fa-user';
return '<div class="label label-table label-' + labelColor + '"> ' + value + '</div>';
}
// Sort Price Column
// =================================================================
function priceSorter(a, b) {
a = +a.substring(1); // remove $
b = +b.substring(1);
if (a > b) return 1;
if (a < b) return -1;
return 0;
}
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat