mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-08 12:44:03 +00:00
18 lines
445 B
JavaScript
18 lines
445 B
JavaScript
//add delete confirm dialog
|
|
var Del_url = '';
|
|
function addConfirmTo(ele) {
|
|
ele.each(function() {
|
|
$(this).click(function() {
|
|
$('#dialog-delete-confirm').modal({appendTo:'#main'});
|
|
Del_url = $(this).attr('data');
|
|
});
|
|
});
|
|
}
|
|
$('#yes-btn').click(function() {
|
|
location.href = Del_url;
|
|
});
|
|
|
|
//handle table
|
|
$("table tr:nth-child(even)").addClass("even");
|
|
$("table tr:nth-child(odd)").addClass("odd");
|