소스 검색

Adds tooltips to settings for education

main
Eric Amodio 3 년 전
부모
커밋
5af13f7a3b
1개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제
  1. +12
    -0
      src/webviews/apps/settings/settings.ts

+ 12
- 0
src/webviews/apps/settings/settings.ts 파일 보기

@ -51,6 +51,18 @@ export class SettingsApp extends AppWithConfig {
this._observer.observe(el);
}
for (const el of document.querySelectorAll<HTMLInputElement>('[data-setting]')) {
if (!el.title && el.type === 'checkbox') {
el.title = `Setting name: "gitlens.${el.name}"`;
}
for (const label of document.querySelectorAll<HTMLLabelElement>(`label[for="${el.id}"]`)) {
if (!label.title) {
label.title = `Setting name: "gitlens.${el.name}"`;
}
}
}
}
protected override onBind() {

불러오는 중...
취소
저장