Skip to content

Commit 7f283b4

Browse files
committed
Added tooltip to gitUI
1 parent 2d7f2da commit 7f283b4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

git-webui/release/share/git-webui/webui/js/git-webui.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,13 +1009,13 @@ webui.SideBarView = function(mainView, noEventHandlers) {
10091009
'</section>' +
10101010
'<section id="sidebar-local-branches">' +
10111011
'<h4 class="mt-1">Local Branches' +
1012-
'<button type="button" class="btn btn-default btn-sidebar-icon btn-add shadow-none" >' +
1012+
'<button type="button" class="btn btn-default btn-sidebar-icon btn-add shadow-none" title="Create new branch">' +
10131013
webui.circlePlusIcon+
10141014
'</button>' + '</h4>' +
10151015
'</section>' +
10161016
'<section id="sidebar-remote-branches">' +
10171017
'<h4 class="mt-1">Remote Branches' +
1018-
'<button type="button" class="btn btn-default btn-sidebar-icon btn-prune-remote-branches shadow-none" >'+
1018+
'<button type="button" class="btn btn-default btn-sidebar-icon btn-prune-remote-branches shadow-none" title="Git fetch of remote branches">'+
10191019
webui.refreshIcon+
10201020
'</button>' +'</h4>' +
10211021
'</section>' +

git-webui/src/share/git-webui/webui/js/git-webui.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,13 +1009,13 @@ webui.SideBarView = function(mainView, noEventHandlers) {
10091009
'</section>' +
10101010
'<section id="sidebar-local-branches">' +
10111011
'<h4 class="mt-1">Local Branches' +
1012-
'<button type="button" class="btn btn-default btn-sidebar-icon btn-add shadow-none" >' +
1012+
'<button type="button" class="btn btn-default btn-sidebar-icon btn-add shadow-none" title="Create new branch">' +
10131013
webui.circlePlusIcon+
10141014
'</button>' + '</h4>' +
10151015
'</section>' +
10161016
'<section id="sidebar-remote-branches">' +
10171017
'<h4 class="mt-1">Remote Branches' +
1018-
'<button type="button" class="btn btn-default btn-sidebar-icon btn-prune-remote-branches shadow-none" >'+
1018+
'<button type="button" class="btn btn-default btn-sidebar-icon btn-prune-remote-branches shadow-none" title="Git fetch of remote branches">'+
10191019
webui.refreshIcon+
10201020
'</button>' +'</h4>' +
10211021
'</section>' +

0 commit comments

Comments
 (0)