[open-ils-commits] [GIT] Evergreen ILS branch rel_3_2 updated. 2ecb1b4767cd8faecc50a4956099aa854ad101a0

Evergreen Git git at git.evergreen-ils.org
Mon Feb 18 14:10:58 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, rel_3_2 has been updated
       via  2ecb1b4767cd8faecc50a4956099aa854ad101a0 (commit)
      from  5f3e439be0fc8f3694d411580496da52c987c66d (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 2ecb1b4767cd8faecc50a4956099aa854ad101a0
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