Update 014-mailcow.js

master
André Peters 2019-04-29 20:24:35 +02:00 committed by GitHub
parent b6607e090e
commit 7c5094b8ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -113,11 +113,17 @@ $(document).ready(function() {
if ($(this).is("a")) { if ($(this).is("a")) {
$(this).removeAttr("data-toggle"); $(this).removeAttr("data-toggle");
$(this).removeAttr("data-target"); $(this).removeAttr("data-target");
$(this).removeAttr("data-action");
$(this).click(function(event) {
event.preventDefault();
});
} }
if ($(this).hasClass('btn-group')) { if ($(this).hasClass('btn-group')) {
$(this).find('a').each(function(){ $(this).find('a').each(function(){
$(this).removeClass('dropdown-toggle') $(this).removeClass('dropdown-toggle')
.removeAttr('data-toggle') .removeAttr('data-toggle')
.removeAttr('data-target')
.removeAttr('data-action')
.removeAttr('id') .removeAttr('id')
.attr("disabled", true); .attr("disabled", true);
$(this).click(function(event) { $(this).click(function(event) {
@ -147,7 +153,7 @@ $(document).ready(function() {
} }
$(this).data("toggle", "tooltip"); $(this).data("toggle", "tooltip");
$(this).attr("title", lang_acl.prohibited); $(this).attr("title", lang_acl.prohibited);
$(this).tooltip(); $(this).tooltip();
}); });
// disable submit after submitting form (not API driven buttons) // disable submit after submitting form (not API driven buttons)