ÿØÿà JFIF ` ` ÿþ
|
Server : Apache/2 System : Linux srv244.medyabim.com 4.18.0-553.89.1.el8_10.x86_64 #1 SMP Mon Dec 8 03:53:08 EST 2025 x86_64 User : lionbursa ( 1773) PHP Version : 5.6.40 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/lionbursa/public_html/admin/style/js/ |
Upload File : |
(function ($, w, undefined) {
if (w.footable === undefined || w.foobox === null)
throw new Error('Please check and make sure footable.js is included in the page and is loaded prior to this script.');
var defaults = {
striping: {
enabled: true
},
classes: {
striping: {
odd: 'footable-odd',
even: 'footable-even'
}
}
};
function Striping() {
var p = this;
p.name = 'Footable Striping';
p.init = function (ft) {
p.footable = ft;
$(ft.table)
.unbind('striping')
.bind({
'footable_initialized.striping footable_row_removed.striping footable_redrawn.striping footable_sorted.striping footable_filtered.striping': function () {
if ($(this).data('striping') === false) return;
p.setupStriping(ft);
}
});
};
p.setupStriping = function (ft) {
var rowIndex = 0;
$(ft.table).find('> tbody > tr:not(.footable-row-detail)').each(function () {
var $row = $(this);
//Clean off old classes
$row.removeClass(ft.options.classes.striping.even).removeClass(ft.options.classes.striping.odd);
if (rowIndex % 2 === 0) {
$row.addClass(ft.options.classes.striping.even);
} else {
$row.addClass(ft.options.classes.striping.odd);
}
rowIndex++;
});
};
}
w.footable.plugins.register(Striping, defaults);
})(jQuery, window);