Skip to content

Commit

Permalink
minor usability improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
janvonde committed Dec 16, 2020
1 parent e60e288 commit 101c2f5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,23 @@
<div id="widgetArchives" class="widget widget-archives">
<h3 class="widget-archives__heading">
<span>#{msg.archives}</span>
<a class="widget-archives__prev #{neighbours.left.present ? '':'-disabled'}" disabled="disabled"
href="#{neighbours.left.present ? (navigationHelper.currentPageTypeUrl.concat('/').concat(neighbours.left.get()).concat('/')) : '#'}"><i class="fa fa-arrow-circle-left" aria-hidden="true"></i></a>
<a class="widget-archives__prev #{neighbours.left.present ? '':'-disabled'}"
disabled="disabled"
title="#{msg.previousHit}"
data-toggle="tooltip"
data-placement="top"
aria-label="#{msg.previousHit}"
href="#{neighbours.left.present ? (navigationHelper.currentPageTypeUrl.concat('/').concat(neighbours.left.get()).concat('/')) : '#'}">
<i class="fa fa-arrow-circle-left" aria-hidden="true"></i>
</a>
<a class="widget-archives__next #{neighbours.right.present ? '':'-disabled'}"
href="#{neighbours.right.present ? (navigationHelper.currentPageTypeUrl.concat('/').concat(neighbours.right.get()).concat('/')) : '#'}"><i class="fa fa-arrow-circle-right" aria-hidden="true"></i></a>
title="#{msg.nextHit}"
data-toggle="tooltip"
data-placement="top"
aria-label="#{msg.nextHit}"
href="#{neighbours.right.present ? (navigationHelper.currentPageTypeUrl.concat('/').concat(neighbours.right.get()).concat('/')) : '#'}">
<i class="fa fa-arrow-circle-right" aria-hidden="true"></i>
</a>
</h3>
<ul>
<ui:repeat var="entry" value="#{archiveBean.getArchiveHierarchyForIdentifier(activeDocumentBean.viewManager.archiveEntryIdentifier)}">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2708,7 +2708,7 @@ preprint=Vorabdruck
press=Presse
prevImage=Vorheriges Bild
previous=Zur\u00FCck
previousHit=Letzter Treffer
previousHit=Vorheriger Treffer
priceAll=Preis (gesamt)
pricePage=Preis (pro Seite)
print=Druckgrafik
Expand Down

0 comments on commit 101c2f5

Please sign in to comment.