Skip to content

Commit 9665629

Browse files
ulfertsEinLama
authored andcommitted
readd guard to only modify form once
1 parent 9c2ed33 commit 9665629

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

modules/bim/app/views/bim/ifc_models/ifc_models/_form.html.erb

+11-9
Original file line numberDiff line numberDiff line change
@@ -114,19 +114,21 @@ See COPYRIGHT and LICENSE files for more details.
114114
setDirectUploadFileName();
115115

116116
<%# rebuild form to post to S3 directly %>
117-
jQuery("input[name=authenticity_token]").remove();
118-
jQuery("input[name=_method]").remove();
117+
if (jQuery("input[name=authenticity_token]").length === 1) {
118+
jQuery("input[name=authenticity_token]").remove();
119+
jQuery("input[name=_method]").remove();
119120

120-
var url = jQuery("input[name=uri]").val();
121+
var url = jQuery("input[name=uri]").val();
121122

122-
jQuery("form").attr("action", url);
123-
jQuery("form").attr("enctype", "multipart/form-data");
123+
jQuery("form").attr("action", url);
124+
jQuery("form").attr("enctype", "multipart/form-data");
124125

125-
jQuery("input[name=uri]").remove();
126+
jQuery("input[name=uri]").remove();
126127

127-
jQuery("form").submit(function() {
128-
jQuery("#bim_ifc_models_ifc_model_title").prop("disabled", "disabled");
129-
});
128+
jQuery("form").submit(function() {
129+
jQuery("#bim_ifc_models_ifc_model_title").prop("disabled", "disabled");
130+
});
131+
}
130132
});
131133
<% unless @ifc_model.new_record? %>
132134
<%# The titleField might have changed AFTER selecting a file. Therefore,

0 commit comments

Comments
 (0)