webstaff: final Booking menu entry
authorJason Etheridge <jason@esilibrary.com>
Fri, 2 Dec 2016 21:04:44 +0000 (16:04 -0500)
committerKathy Lussier <klussier@masslnc.org>
Mon, 9 Jan 2017 15:58:59 +0000 (10:58 -0500)
  * Return Reservations

and xulG load timing issue workaround

Signed-off-by: Jason Etheridge <jason@esilibrary.com>
Signed-off-by: Kathy Lussier <klussier@masslnc.org>

Open-ILS/src/templates/staff/navbar.tt2
Open-ILS/web/js/ui/default/booking/return.js

index ac82c6d..23db624 100644 (file)
           </li>
           <li>
             <a href="./booking/legacy/booking/pull_list" target="_self">
-              <span class="glyphicon glyphicon-ok"></span>
+              <span class="glyphicon glyphicon-th-list"></span>
               [% l('Pull List') %]
             </a>
           </li>
           </li>
           <li>
             <a href="./booking/legacy/booking/pickup" target="_self">
-              <span class="glyphicon glyphicon-user"></span>
+              <span class="glyphicon glyphicon-export"></span>
               [% l('Pick Up Reservations') %]
             </a>
           </li>
+          <li>
+            <a href="./booking/legacy/booking/return" target="_self">
+              <span class="glyphicon glyphicon-import"></span>
+              [% l('Return Reservations') %]
+            </a>
+          </li>
         </ul>
       </li>
 
index 64c9cf8..cdc3edd 100644 (file)
@@ -37,5 +37,7 @@ function my_init() {
     }, document.getElementById("barcode"));
     init_auto_l10n(document.getElementById("auto_l10n_start_here"));
 
-    react_to_pass_in(xulG.bresv_interface_opts);
+    setTimeout(
+        function() { react_to_pass_in(xulG.bresv_interface_opts); }, 0
+    );
 }