mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-09 11:30:00 +00:00
14b6202eec
Fixes func in helper,web Fixes for pdf reader fixes for calling from another folder renamed to calibreweb for importing in python caller script
79 lines
2.7 KiB
JavaScript
79 lines
2.7 KiB
JavaScript
/* This file is part of the Calibre-Web (https://github.com/janeczku/calibre-web)
|
|
* Copyright (C) 2018 OzzieIsaacs
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/* exported TableActions */
|
|
|
|
$(function() {
|
|
|
|
$("#domain_submit").click(function(event) {
|
|
event.preventDefault();
|
|
$("#domain_add").ajaxForm();
|
|
$(this).closest("form").submit();
|
|
$.ajax ({
|
|
method:"get",
|
|
url: window.location.pathname + "/../../ajax/domainlist",
|
|
async: true,
|
|
timeout: 900,
|
|
success:function(data) {
|
|
$("#domain-table").bootstrapTable("load", data);
|
|
}
|
|
});
|
|
});
|
|
$("#domain-table").bootstrapTable({
|
|
formatNoMatches: function () {
|
|
return "";
|
|
},
|
|
striped: false
|
|
});
|
|
$("#btndeletedomain").click(function() {
|
|
//get data-id attribute of the clicked element
|
|
var domainId = $(this).data("domainId");
|
|
$.ajax({
|
|
method:"post",
|
|
url: window.location.pathname + "/../../ajax/deletedomain",
|
|
data: {"domainid":domainId}
|
|
});
|
|
$("#DeleteDomain").modal("hide");
|
|
$.ajax({
|
|
method:"get",
|
|
url: window.location.pathname + "/../../ajax/domainlist",
|
|
async: true,
|
|
timeout: 900,
|
|
success:function(data) {
|
|
$("#domain-table").bootstrapTable("load", data);
|
|
}
|
|
});
|
|
|
|
});
|
|
//triggered when modal is about to be shown
|
|
$("#DeleteDomain").on("show.bs.modal", function(e) {
|
|
//get data-id attribute of the clicked element and store in button
|
|
var domainId = $(e.relatedTarget).data("domain-id");
|
|
$(e.currentTarget).find("#btndeletedomain").data("domainId", domainId);
|
|
});
|
|
});
|
|
|
|
/* Function for deleting domain restrictions */
|
|
function TableActions (value, row, index) {
|
|
return [
|
|
"<a class=\"danger remove\" data-toggle=\"modal\" data-target=\"#DeleteDomain\" data-domain-id=\"" + row.id
|
|
+ "\" title=\"Remove\">",
|
|
"<i class=\"glyphicon glyphicon-trash\"></i>",
|
|
"</a>"
|
|
].join("");
|
|
}
|