Skip to content
Snippets Groups Projects

Issue #3455823: Fix the warning issue that occurs when pressing the save submit button in the Gin Admin theme

Open Issue #3455823: Fix the warning issue that occurs when pressing the save submit button in the Gin Admin theme
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -19,7 +19,7 @@
});
// Let all form submit buttons through.
$(".node-form input[type='submit'], .node-form button[type='submit']").each(function() {
$(".node-form input[type='submit'], .node-form button[type='submit'], input[type='submit']:not(.node-edit-protection-processed), button[type='submit']:not(.node-edit-protection-processed)").each(function() {
$(this).addClass('node-edit-protection-processed');
$(this).click(function() {
click = true;
@@ -27,7 +27,7 @@
});
// Catch all links and buttons EXCEPT for "#" links.
$("a, button, input[type='submit']:not(.node-edit-protection-processed), button[type='submit']:not(.node-edit-protection-processed)")
$("a, button")
.each(function() {
$(this).click(function() {
// Return when a "#" link is clicked so as to skip the
Loading