Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

utilize HTML title for tooltips #1597

Merged
merged 1 commit into from
Nov 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div data-ng-if="$ctrl.control.rights.canDeleteEntry() && $ctrl.isAtEditorEntry()" class="d-flex align-items-center justify-content-between">
Entry

<a href data-ng-click="$ctrl.deleteEntry()" class="text-danger" role="button">
<a href data-ng-click="$ctrl.deleteEntry()" class="text-danger" role="button" title="Delete this entry">
<span class="fa fa-trash"></span>
</a>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<span class="flex-grow"></span>

<div class="mr-4">
<a href data-ng-show="$ctrl.index > 0" data-ng-click="$ctrl.move($ctrl.index, -1)" class="mr-1" role="button">
<a href data-ng-show="$ctrl.index > 0" data-ng-click="$ctrl.move($ctrl.index, -1)" class="mr-1" role="button" title="Move this example up">
<span class="fa fa-arrow-up"></span>
</a>
<a href data-ng-show="$ctrl.index+1 < $ctrl.numExamples()" data-ng-click="$ctrl.move($ctrl.index, 1)" class="mr-1" role="button">
<a href data-ng-show="$ctrl.index+1 < $ctrl.numExamples()" data-ng-click="$ctrl.move($ctrl.index, 1)" class="mr-1" role="button" title="Move this example down">
<span class="fa fa-arrow-down"></span>
</a>
</div>

<a href data-ng-click="$ctrl.remove($ctrl.index)" class="text-danger" role="button">
<a href data-ng-click="$ctrl.remove($ctrl.index)" class="text-danger" role="button" title="Delete this example">
<span class="fa fa-trash"></span>
</a>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<span class="flex-grow"></span>

<div class="mr-4">
<a href data-ng-show="$ctrl.index > 0" data-ng-click="$ctrl.move($ctrl.index, -1)" class="mr-1" role="button">
<a href data-ng-show="$ctrl.index > 0" data-ng-click="$ctrl.move($ctrl.index, -1)" class="mr-1" role="button" title="Move this meaning up">
<span class="fa fa-arrow-up"></span>
</a>
<a href data-ng-show="$ctrl.index+1 < $ctrl.numSenses()" data-ng-click="$ctrl.move($ctrl.index, 1)" class="mr-1" role="button">
<a href data-ng-show="$ctrl.index+1 < $ctrl.numSenses()" data-ng-click="$ctrl.move($ctrl.index, 1)" class="mr-1" role="button" title="Move this meaning down">
<span class="fa fa-arrow-down"></span>
</a>
</div>

<a href data-ng-click="$ctrl.remove($ctrl.index)" class="text-danger" role="button">
<a href data-ng-click="$ctrl.remove($ctrl.index)" class="text-danger" role="button" title="Delete this meaning">
<span class="fa fa-trash"></span>
</a>
</div>
Expand Down