[open-ils-commits] [GIT] Evergreen ILS branch master updated. d748fe929021bd3d8ad7d2bc575eb35b78b689e0

Evergreen Git git at git.evergreen-ils.org
Mon Feb 18 14:10:57 EST 2019


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, master has been updated
       via  d748fe929021bd3d8ad7d2bc575eb35b78b689e0 (commit)
      from  fa490cf5308f26316d29d0fbc8178ca136236743 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit d748fe929021bd3d8ad7d2bc575eb35b78b689e0
Author: Jason Stephenson <jason at sigio.com>
Date:   Sat Feb 9 15:45:50 2019 -0500

    Lp 1813290: Fix IAMBROWSER check in ac lineitem table.
    
    Looks like commit e9a9875d added a check for IAMBROWSER that missed
    the window.  This commit adds the window.
    
    Signed-off-by: Jason Stephenson <jason at sigio.com>
    Signed-off-by: John Amundson <jamundson at cwmars.org>
    Signed-off-by: Tiffany Little <tlittle at georgialibraries.org>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/web/js/ui/default/acq/common/li_table.js b/Open-ILS/web/js/ui/default/acq/common/li_table.js
index 8c59f4e7c3..4dd6d3f17a 100644
--- a/Open-ILS/web/js/ui/default/acq/common/li_table.js
+++ b/Open-ILS/web/js/ui/default/acq/common/li_table.js
@@ -787,7 +787,7 @@ function AcqLiTable() {
             oilsBasePath + "/acq/lineitem/worksheet/" + li.id() + 
             '?source=' + encodeURIComponent(location.pathname + location.search)
 
-        if (!IAMBROWSER) {
+        if (!window.IAMBROWSER) {
             nodeByName("show_requests_link", row).href =
                 oilsBasePath + "/acq/picklist/user_request?lineitem=" + li.id() +
                 '?source=' + encodeURIComponent(location.pathname + location.search);

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/web/js/ui/default/acq/common/li_table.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list