Fix another error cause by a typo.
authorJason Stephenson <jason@sigio.com>
Sun, 21 Oct 2018 22:43:37 +0000 (18:43 -0400)
committerJason Stephenson <jason@sigio.com>
Fri, 26 Oct 2018 23:04:56 +0000 (19:04 -0400)
ReferenceError: egcore is not defined
    at handle_event (circ.js:1385)

Open-ILS/web/js/ui/default/staff/circ/services/circ.js

index c135a4c..df581d0 100644 (file)
@@ -1382,7 +1382,7 @@ function($uibModal , $q , egCore , egAlertDialog , egConfirmDialog,  egAddCopyAl
             var dlogTitle, dlogMessage;
             switch (event.textcode) {
             case 'ITEM_TO_MARK_CHECKED_OUT':
-                dlogTitle = egcore.strings.MARK_ITEM_CHECKED_OUT;
+                dlogTitle = egCore.strings.MARK_ITEM_CHECKED_OUT;
                 dlogMessage = egCore.strings.MARK_ITEM_CHECKIN_CONTINUE;
                 args.handle_checkin = 1;
                 break;