Add tooltips to explain some icon-only controls

master
Dale Price 2013-02-17 00:08:16 -06:00
parent 0266bcd593
commit 96fb0c2ce1
1 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@
<a class="accordion-toggle" data-toggle="collapse" href="#files"><i class="icon-list"></i> Files</a>
<div class="settings-trigger btn-group">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
<a class="dropdown-toggle" title="Display options" data-toggle="dropdown" href="#">
<i class="icon-wrench"></i>
</a>
<ul class="dropdown-menu">
@ -105,7 +105,7 @@
<tr data-bind="css: $root.getSuccessClass($data), popover: { title: name, animation: true, html: true, placement: 'right', trigger: 'hover', delay: 0, content: $root.getPopoverContent($data), html: true }">
<td class="gcode_files_name" data-bind="text: name"></td>
<td class="gcode_files_size" data-bind="text: size"></td>
<td class="gcode_files_action"><a href="#" class="icon-trash" data-bind="click: function() { $root.removeFile($data.name); }"></a>&nbsp;|&nbsp;<a href="#" class="icon-folder-open" data-bind="click: function() { $root.loadFile($data.name); }"></a></td>
<td class="gcode_files_action"><a href="#" class="icon-trash" title="Remove" data-bind="click: function() { $root.removeFile($data.name); }"></a>&nbsp;|&nbsp;<a href="#" class="icon-folder-open" title="Open" data-bind="click: function() { $root.loadFile($data.name); }"></a></td>
</tr>
</tbody>
</table>