diff --git a/core/misc/ajax.js b/core/misc/ajax.js
index 7df7bc2..2db4171 100644
--- a/core/misc/ajax.js
+++ b/core/misc/ajax.js
@@ -245,7 +245,7 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
 
       dataType: 'json',
       jsonp: false,
-      type: 'POST'
+      type: typeof ajax.type !== 'undefined' ? ajax.type : 'POST'
     };
 
     if (elementSettings.dialog) {
-- 
