Skip to content

Commit 4d3a211

Browse files
authored
Merge pull request smarthomeNG#1047 from Morg42/git
githubplugin: add image hover titles
2 parents 824ec63 + 3a92b5a commit 4d3a211

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

githubplugin/webif/templates/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,9 @@
198198
shngInsertText(plugin+'_wtpath', objResponse[plugin]['disp_wt_path'], 'plugintable', 2);
199199
if (objResponse[plugin]['clean']) {
200200
txt =
201-
'<button type="button" class="btn btn-danger btn-sm" onclick="javascript:removePlugin(' +
201+
'<button type="button" title="Plugin entfernen" class="btn btn-danger btn-sm" onclick="javascript:removePlugin(' +
202202
objResponse[plugin]['owner'] + ', ' + objResponse[plugin]['branch'] + ', ' + objResponse[plugin]['plugin'] + ', ' + plugin + ');"><i class="fas fa-times"></i></button>' +
203-
'<button type="button" class="btn btn-shng btn-sm" onclick="javascript:pullRepo(' + plugin + ');"><i class="fas fa-download"></i></button>';
203+
'<button type="button" title="Pull für aktuelle Version ausführen" class="btn btn-shng btn-sm" onclick="javascript:pullRepo(' + plugin + ');"><i class="fas fa-download"></i></button>';
204204
} else {
205205
txt = 'Änderungen vorhanden';
206206
}
@@ -676,8 +676,8 @@
676676
remote: {{ repos[plugin].rcommit }}">
677677
{{ repos[plugin].lc }}/{{ repos[plugin].rc }}</td>
678678
<td id="{{ plugin }}_action">{% if not repos[plugin].clean %}Änderungen vorhanden{% else %}
679-
<button type="button" class="btn btn-danger btn-sm" onclick="javascript:removePlugin('{{ repos[plugin].owner }}', '{{ repos[plugin].branch }}', '{{ repos[plugin].plugin }}', '{{ plugin }}');"><i class="fas fa-times"></i></button>
680-
<button type="button" class="btn btn-shng btn-sm" onclick="javascript:pullRepo('{{ plugin }}');"><i class="fas fa-download"></i></button>
679+
<button type="button" title="Plugin entfernen" class="btn btn-danger btn-sm" onclick="javascript:removePlugin('{{ repos[plugin].owner }}', '{{ repos[plugin].branch }}', '{{ repos[plugin].plugin }}', '{{ plugin }}');"><i class="fas fa-times"></i></button>
680+
<button type="button" title="Pull für aktuelle Version ausführen" class="btn btn-shng btn-sm" onclick="javascript:pullRepo('{{ plugin }}');"><i class="fas fa-download"></i></button>
681681
{% endif %}</td>
682682
</tr>
683683
{% endfor %}

0 commit comments

Comments
 (0)