@@ -114,19 +114,21 @@ See COPYRIGHT and LICENSE files for more details.
114
114
setDirectUploadFileName();
115
115
116
116
<%# 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();
119
120
120
- var url = jQuery("input[name=uri]").val();
121
+ var url = jQuery("input[name=uri]").val();
121
122
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");
124
125
125
- jQuery("input[name=uri]").remove();
126
+ jQuery("input[name=uri]").remove();
126
127
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
+ }
130
132
});
131
133
<% unless @ifc_model . new_record? %>
132
134
<%# The titleField might have changed AFTER selecting a file. Therefore,
0 commit comments