diff --git a/app/views/account_activations/show.html.erb b/app/views/account_activations/show.html.erb index 1098255f..6640bb79 100644 --- a/app/views/account_activations/show.html.erb +++ b/app/views/account_activations/show.html.erb @@ -22,7 +22,7 @@

<%= t("verify.not_verified") %>

- <%= button_to t("verify.resend"), resend_email_path, params: { email: params['email'], email_verified: false }, class: "btn btn-primary btn-space" %> + <%= button_to t("verify.resend"), resend_email_path, params: { email: params['email'], email_verified: false }, class: "btn btn-primary btn-space", "data-disable": "" %>
diff --git a/app/views/admins/components/_server_recording_row.html.erb b/app/views/admins/components/_server_recording_row.html.erb index 128a4d7f..bde89c80 100644 --- a/app/views/admins/components/_server_recording_row.html.erb +++ b/app/views/admins/components/_server_recording_row.html.erb @@ -46,10 +46,10 @@ <% end %> @@ -73,7 +73,7 @@ <%= t("recording.email") %> <% end %> - <%= button_to delete_recording_path(meetingID: recording[:meetingID], record_id: recording[:recordID]), method: :delete, class: "dropdown-item" do %> + <%= button_to delete_recording_path(meetingID: recording[:meetingID], record_id: recording[:recordID]), method: :delete, class: "dropdown-item", "data-disable": "" do %> <%= t("delete") %> <% end %> diff --git a/app/views/admins/components/_server_room_row.html.erb b/app/views/admins/components/_server_room_row.html.erb index 39f882f3..f7eb1196 100644 --- a/app/views/admins/components/_server_room_row.html.erb +++ b/app/views/admins/components/_server_room_row.html.erb @@ -47,7 +47,7 @@ <%= link_to room_path(room), class: "dropdown-item" do %> <%= t("administrator.rooms.view") %> <% end %> - <%= button_to start_room_path(room), class: "dropdown-item" do %> + <%= button_to start_room_path(room), class: "dropdown-item", "data-disable": "" do %> <%= running ? t("room.join") : t("room.start") %> <% end %> diff --git a/app/views/admins/components/_settings.html.erb b/app/views/admins/components/_settings.html.erb index fa36afe1..52d02bfc 100644 --- a/app/views/admins/components/_settings.html.erb +++ b/app/views/admins/components/_settings.html.erb @@ -64,13 +64,13 @@ <%= registration_method_string %> @@ -88,10 +88,10 @@ <%= room_authentication_string %> @@ -109,10 +109,10 @@ <%= recording_default_visibility_string %> @@ -128,25 +128,25 @@
@@ -161,7 +161,7 @@
- <%= button_to t("administrator.site_settings.cache.button"), admin_clear_cache_path, class: "btn btn-primary" %> + <%= button_to t("administrator.site_settings.cache.button"), admin_clear_cache_path, class: "btn btn-primary", "data-disable": "" %>
diff --git a/app/views/admins/components/_users.html.erb b/app/views/admins/components/_users.html.erb index e893b745..74383a07 100644 --- a/app/views/admins/components/_users.html.erb +++ b/app/views/admins/components/_users.html.erb @@ -100,31 +100,31 @@
<% if @room_running %> - <%= button_to t("room.join"), room_path(@room), class: "btn btn-primary btn-block px-7 start-button float-right" %> + <%= button_to t("room.join"), room_path(@room), class: "btn btn-primary btn-block px-7 start-button float-right", "data-disable": "" %> <% else %> <% unless exceeds_limit %> - <%= button_to t("room.start"), start_room_path(@room), class: "btn btn-primary btn-block px-7 start-button float-right" %> + <%= button_to t("room.start"), start_room_path(@room), class: "btn btn-primary btn-block px-7 start-button float-right", "data-disable": "" %> <% end %> <% end %>
diff --git a/app/views/shared/components/_recording_row.html.erb b/app/views/shared/components/_recording_row.html.erb index 1c607583..de669f40 100644 --- a/app/views/shared/components/_recording_row.html.erb +++ b/app/views/shared/components/_recording_row.html.erb @@ -53,10 +53,10 @@ <% end %> @@ -80,7 +80,7 @@ <%= t("recording.email") %> <% end %> - <%= button_to delete_recording_path(meetingID: recording[:meetingID], record_id: recording[:recordID]), method: :delete, class: "dropdown-item" do %> + <%= button_to delete_recording_path(meetingID: recording[:meetingID], record_id: recording[:recordID]), method: :delete, class: "dropdown-item", "data-disable": "" do %> <%= t("delete") %> <% end %> diff --git a/app/views/shared/modals/_delete_account_modal.html.erb b/app/views/shared/modals/_delete_account_modal.html.erb index 87b22300..6180b17e 100644 --- a/app/views/shared/modals/_delete_account_modal.html.erb +++ b/app/views/shared/modals/_delete_account_modal.html.erb @@ -26,7 +26,7 @@ <%= t("modal.delete_account.keep") %> - <%= button_to delete_location, method: :delete, id: "delete-confirm", class: "btn btn-danger my-1 btn-del-room", disabled:"" do %> + <%= button_to delete_location, method: :delete, id: "delete-confirm", class: "btn btn-danger my-1 btn-del-room", disabled:"", "data-disable": "" do %> <%= t("modal.delete_account.delete") %> <% end %> diff --git a/app/views/shared/modals/_delete_room_modal.html.erb b/app/views/shared/modals/_delete_room_modal.html.erb index d96bff37..0ecd9f2c 100644 --- a/app/views/shared/modals/_delete_room_modal.html.erb +++ b/app/views/shared/modals/_delete_room_modal.html.erb @@ -26,7 +26,7 @@ <%= t("modal.delete_room.keep") %> - <%= button_to "/", method: :delete, id: "delete-confirm", class: "btn btn-danger my-1 btn-del-room" do %> + <%= button_to "/", method: :delete, id: "delete-confirm", class: "btn btn-danger my-1 btn-del-room", "data-disable": "" do %> <%= t("modal.delete_room.delete") %> <% end %> diff --git a/app/views/users/terms.html.erb b/app/views/users/terms.html.erb index 62f7a708..18653ebc 100644 --- a/app/views/users/terms.html.erb +++ b/app/views/users/terms.html.erb @@ -25,7 +25,7 @@ <% if Rails.configuration.terms && current_user && !current_user.accepted_terms %>
- <%= button_to t("terms.accept_existing"), terms_path, params: { accept: true }, class: "btn btn-primary btn-space" %> + <%= button_to t("terms.accept_existing"), terms_path, params: { accept: true }, class: "btn btn-primary btn-space", "data-disable": "" %>
<% end %>