Browse Source

Do not send request if no type specified

Denis K 9 years ago
parent
commit
87590d6cf5
2 changed files with 15 additions and 13 deletions
  1. 15 13
      jet/static/jet/js/main.js
  2. 0 0
      jet/static/jet/js/main.min.js

+ 15 - 13
jet/static/jet/js/main.js

@@ -781,21 +781,23 @@
                 var $typeInput = $form.find('[name="type"]');
                 var type = $form.find('[name="module"] option:selected').data('type');
 
-                $typeInput.val(type);
+                if (type) {
+                    $typeInput.val(type);
 
-                $.ajax({
-                    url: $form.attr('action'),
-                    method: $form.attr('method'),
-                    dataType: 'json',
-                    data: $form.serialize(),
-                    success: function (result) {
-                        if (result.error) {
-                            return;
-                        }
+                    $.ajax({
+                        url: $form.attr('action'),
+                        method: $form.attr('method'),
+                        dataType: 'json',
+                        data: $form.serialize(),
+                        success: function (result) {
+                            if (result.error) {
+                                return;
+                            }
 
-                        document.location = result.success_url;
-                    }
-                });
+                            document.location = result.success_url;
+                        }
+                    });
+                }
 
                 e.preventDefault();
             });

File diff suppressed because it is too large
+ 0 - 0
jet/static/jet/js/main.min.js


Some files were not shown because too many files changed in this diff