Files
old-holivud2/app/views/video_release_confirmations/new.js.erb
2020-05-31 22:38:19 +02:00

8 lines
375 B
Plaintext

$("[data-toggle=tooltip]").tooltip("dispose");
<% # Remove the modal if it already exists %>
$("#new_video_release_confirmation_modal").remove();
<% # Create and show the modal %>
$("body").append("<%= j render('new_video_release_confirmation_modal', video_release_confirmation: @video_release_confirmation) %>");
$("#new_video_release_confirmation_modal").modal("toggle");