web staff : log templates / dynamic strings
authorBill Erickson <berick@esilibrary.com>
Tue, 10 Dec 2013 16:10:30 +0000 (11:10 -0500)
committerBill Erickson <berick@esilibrary.com>
Tue, 10 Dec 2013 16:10:30 +0000 (11:10 -0500)
Signed-off-by: Bill Erickson <berick@esilibrary.com>
web-staff-log.txt

index bc7a169..62fa8dc 100644 (file)
@@ -900,8 +900,11 @@ these will be used frequently, so they are good candidates for genericizing.
 
 [source,js]
 -----------------------------------------------------------------------------
+// egAlertDialog.open(message_str, dialog_scope)
+// egConfirmDialog.open(title_str, message_str, dialog_scope)
+
 egConfirmDialog.open(
-    'Copy Alert Message for {{copy_barcode}}',
+    'Copy Alert Message for {{copy_barcode}}.  Continue checkin?',
     evt.payload, // copy alert message text 
     {   copy_barcode : barcode_str,
         ok : function() { console.log('user clicked OK') }
@@ -948,7 +951,7 @@ UNCAT_ALERT_DIALOG :
     '[% l('Copy "{{copy_barcode}}" was mis-scanned or is not cataloged') %]',  
 
 COPY_ALERT_MSG_DIALOG_TITLE :                                                  
-    '[% l('Copy Alert Message for {{copy_barcode}}') %]'                       
+    '[% l('Copy Alert Message for {{copy_barcode}}.  Continue checkin?') %]'                       
 }});                                                                           
 </script>
 -----------------------------------------------------------------------------