mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-22 08:58:42 +00:00
fix: 75f6adb4ff
This commit is contained in:
parent
2787028069
commit
14a2ab6f20
@ -524,17 +524,14 @@ $.fn.long_table = function(data, cur_page, header_row, get_row_str, config) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$(table_div).append(
|
$(table_div).append(
|
||||||
typeof config.print_before_table === 'function' ? config.print_before_table() : ''
|
$('<div class="' + div_classes.join(' ') + '" />')
|
||||||
).append(
|
.append(typeof config.print_before_table === 'function' ? config.print_before_table() : '')
|
||||||
$('<div class="' + div_classes.join(' ') + '" />').append(
|
.append(
|
||||||
$('<table class="' + table_classes.join(' ') + '" />').append(
|
$('<table class="' + table_classes.join(' ') + '" />')
|
||||||
$('<thead />').append(header_row)
|
.append($('<thead />').append(header_row))
|
||||||
).append(
|
.append(tbody)
|
||||||
tbody
|
|
||||||
)
|
|
||||||
).append(
|
|
||||||
typeof config.print_after_table === 'function' ? config.print_after_table() : ''
|
|
||||||
)
|
)
|
||||||
|
.append(typeof config.print_after_table === 'function' ? config.print_after_table() : '')
|
||||||
);
|
);
|
||||||
|
|
||||||
var get_page_li = function(p, h) {
|
var get_page_li = function(p, h) {
|
||||||
|
Loading…
Reference in New Issue
Block a user