[open-ils-commits] [GIT] Evergreen ILS branch rel_3_1 updated. b8a5bb95b65fdb99b8e064c4444d1aab056bbcb3

Evergreen Git git at git.evergreen-ils.org
Tue Nov 6 09:54:11 EST 2018


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_1 has been updated
       via  b8a5bb95b65fdb99b8e064c4444d1aab056bbcb3 (commit)
       via  d43a0a151e7f2facf30ac62c0137e20b2a0b78b8 (commit)
      from  9a159294b632922c87203cfa2b00495620e94b44 (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 b8a5bb95b65fdb99b8e064c4444d1aab056bbcb3
Author: Kathy Lussier <klussier at masslnc.org>
Date:   Mon Nov 5 15:50:24 2018 -0500

    LP#1755543: Change placement of help popovers
    
    Set the placement of help tip popovers so that they automatically position
    to a visible place on the screen.
    
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>
    Signed-off-by: Remington Steed <rjs7 at calvin.edu>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/src/templates/staff/share/t_help_popover.tt2 b/Open-ILS/src/templates/staff/share/t_help_popover.tt2
index 215400a..c07ee20 100644
--- a/Open-ILS/src/templates/staff/share/t_help_popover.tt2
+++ b/Open-ILS/src/templates/staff/share/t_help_popover.tt2
@@ -1,10 +1,12 @@
 <span class="glyphicon glyphicon-question-sign"
       uib-popover="{{helpText}}"
       popover-trigger="click"
+      popover-placement="auto"
       ng-if="!helpLink || helpLink.length == 0"
 ></span>
 <span class="glyphicon glyphicon-question-sign"
       uib-popover-html="helpHtml"
       popover-trigger="click"
+      popover-placement="auto"
       ng-if="helpLink.length > 0"
 ></span>

commit d43a0a151e7f2facf30ac62c0137e20b2a0b78b8
Author: Kathy Lussier <klussier at masslnc.org>
Date:   Tue Mar 13 12:54:42 2018 -0400

    LP#1755543: Add help tips to Print Item Labels Settings tab
    
    Instead of providing lengthy settings descriptions, which result in a lot of
    scrolling on the Print Item Template page, let's use help tips that can
    provide guidance to new users without adding clutter to the interface.
    
    This commit also turns the field labels into HTML labels for improved
    accessibility and removes borders on the page. The borders were helpful
    when we displayed the help text on the page, but are no longer needed.
    
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>
    Signed-off-by: Remington Steed <rjs7 at calvin.edu>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/src/templates/staff/cat/printlabels/t_view.tt2 b/Open-ILS/src/templates/staff/cat/printlabels/t_view.tt2
index 49f82dc..fc5dfed 100644
--- a/Open-ILS/src/templates/staff/cat/printlabels/t_view.tt2
+++ b/Open-ILS/src/templates/staff/cat/printlabels/t_view.tt2
@@ -126,14 +126,10 @@
             <div ng-show="current_tab == 'settings'">
                 <div><span>[% l('These settings do get saved with templates and will override corresponding Library Settings.') %]<br/></span></div>
                 <div ng-repeat="s in org_unit_settings">
-                    <div class="row" style="margin-top: 5mm; border-top: solid thin black">
-                        <div class="col-md-6" style="font-weight: bold">{{s.label}}</div>
+                    <div class="row" style="margin-top: 5mm;">
+                        <div class="col-md-6"><label>{{s.label}} <eg-help-popover help-text="{{s.description}}"></label></div>
                         <div class="col-md-6"><input type="text" ng-model="preview_scope.settings[s.name]"></input></div>
                     </div>
-
-                    <div class="row">
-                        <div>{{s.description}}</div>
-                    </div>
                 </div>
 
             </div>

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

Summary of changes:
 .../src/templates/staff/cat/printlabels/t_view.tt2 |    8 ++------
 .../src/templates/staff/share/t_help_popover.tt2   |    2 ++
 2 files changed, 4 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list