Skip to content

Commit

Permalink
Merge pull request #735 from TimRudy/Issue729-2
Browse files Browse the repository at this point in the history
Fix tooltips on plugin launcher bar; fix left padding in Select Collection menu
  • Loading branch information
cavearr authored Apr 29, 2024
2 parents 7bb210b + 6c24a6f commit 92038ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/resources/plugins/launchBar/views/plugin-list.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{{#pluginList}}
<div class="launcher" data-pluginid="{{id}}"><img class="launcher-icon" src="{{icon}}" alt="{{{name}}}"></div>
<div class="launcher" data-pluginid="{{id}}" title="{{{name}}}"><img class="launcher-icon" src="{{icon}}" alt="{{{name}}}"></div>
{{/pluginList}}
2 changes: 1 addition & 1 deletion app/resources/plugins/zconfigurator/zconfigurator.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<div class="wrapper">
<p>comming soon</p>
<p>Coming soon</p>
</div>
7 changes: 3 additions & 4 deletions app/views/menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -542,8 +542,7 @@

<ul uib-dropdown-menu>

<!-- Default collection -->
<data ng-init="collection = common.defaultCollection"/>
<!-- Default collection obsolete...
<li>
<a href ng-click="selectCollection(collection)"
ng-show="collection.name == ''">
Expand All @@ -552,10 +551,10 @@
class="glyphicon glyphicon-ok-circle"></span>
</a>
</li>
<li class="divider"
ng-show="common.internalCollections.length > 0"></li> -->

<!-- Internal collections -->
<li class="divider"
ng-show="common.internalCollections.length > 0"></li>
<li ng-repeat="collection in common.internalCollections">
<a href ng-click="selectCollection(collection)"
ng-hide="collection.name == ''">
Expand Down

0 comments on commit 92038ae

Please sign in to comment.