From ceeaea6be90772fd0e82039ca90f7495f51c8f4e Mon Sep 17 00:00:00 2001 From: Rajit Sarkar Date: Tue, 10 Sep 2024 09:48:40 -0400 Subject: [PATCH] CONCD-919 Change transcription box message on reserved asset pages --- concordia/static/js/src/contribute.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/concordia/static/js/src/contribute.js b/concordia/static/js/src/contribute.js index 03a429a22..355419f4b 100644 --- a/concordia/static/js/src/contribute.js +++ b/concordia/static/js/src/contribute.js @@ -793,5 +793,9 @@ window.addEventListener('beforeunload', function (event) { "The transcription you've started has not been saved."); } }); +$('#asset-reservation-failure-modal').click(function () { + document.getElementById('transcription-input').placeholder = + 'Someone else is already transcribing this page'; +}); setupPage();