We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3d4f76 commit 8f7f7abCopy full SHA for 8f7f7ab
Griddly/Scripts/griddly.js
@@ -329,6 +329,10 @@
329
$(this.$element).on("click", "[data-toggle=post]", $.proxy(function (event)
330
{
331
var url = $(event.currentTarget).data("url");
332
+
333
+ if (!url)
334
+ url = $(event.currentTarget).attr("href");
335
336
var ids = this.getSelected();
337
var inputs = "";
338
@@ -347,6 +351,8 @@
347
351
348
352
$("<form action=\"" + url + "\" method=\"post\">" + inputs + "</form>")
349
353
.appendTo("body").submit().remove();
354
355
+ return false;
350
356
}, this));
357
358
$(this.$element).on("click", "[data-toggle=postcriteria]", $.proxy(function (event)
0 commit comments