[open-ils-commits] [GIT] Evergreen ILS branch rel_3_2 updated. 9080603f72e10ef1d18f895fb31cfca77d0bbc89

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_2 has been updated
       via  9080603f72e10ef1d18f895fb31cfca77d0bbc89 (commit)
       via  c70a7a11f878983d02192239c74129ad25e44feb (commit)
      from  cfb872e8432d4967ec3b03c7d31c32c98ed89522 (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 9080603f72e10ef1d18f895fb31cfca77d0bbc89
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 c70a7a11f878983d02192239c74129ad25e44feb
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