Browse Source

Add titles to the Running tab buttons.

Fixes #3604
Jason Grout 7 năm trước cách đây
mục cha
commit
32f2c742ef
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      packages/running/src/index.ts

+ 2 - 0
packages/running/src/index.ts

@@ -534,10 +534,12 @@ namespace RunningSessions {
       sessions.className = `${SECTION_CLASS} ${SESSIONS_CLASS}`;
 
       let refresh = document.createElement('button');
+      refresh.title = 'Refresh List';
       refresh.className = REFRESH_CLASS;
       header.appendChild(refresh);
 
       let shutdown = document.createElement('button');
+      shutdown.title = 'Shutdown All Kernels…';
       shutdown.className = SHUTDOWN_CLASS;
       header.appendChild(shutdown);