We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e70410f commit 91312ccCopy full SHA for 91312cc
assets/js/frontend-advanced.js
@@ -33,7 +33,7 @@ $(document).on('rex:ready', function() {
33
}
34
35
// Client-IP-Adresse hinzufügen
36
- $(document).on('click', '#maintenance-add-ip', function(e) {
+ $('#maintenance-add-ip').on('click', function(e) {
37
e.preventDefault();
38
var currentIp = $(this).data('ip');
39
if (currentIp) {
@@ -42,7 +42,7 @@ $(document).on('rex:ready', function() {
42
});
43
44
// Server-IP-Adresse hinzufügen
45
- $(document).on('click', '#maintenance-add-server-ip', function(e) {
+ $('#maintenance-add-server-ip').on('click', function(e) {
46
47
var serverIp = $(this).data('ip');
48
if (serverIp) {
0 commit comments