瀏覽代碼

unique section link text

Heydon Pickering 8 年之前
父節點
當前提交
f95f76dff4
共有 3 個文件被更改,包括 4 次插入2 次删除
  1. 2 1
      docs/js/dom-scripts.js
  2. 0 0
      docs/service-worker.js
  3. 2 1
      themes/infusion/static/js/dom-scripts.js

+ 2 - 1
docs/js/dom-scripts.js

@@ -68,7 +68,8 @@
 
       var link = document.createElement('a')
       link.setAttribute('href', '#' + id)
-      link.setAttribute('aria-label', 'link for this section')
+      var headingText = heading.textContent
+      link.setAttribute('aria-label', 'To this ' + headingText + ' section')
       link.innerHTML = '<svg aria-hidden="true" viewBox="0 0 50 50" focusable="false"> <use xlink:href="#link"></use> </svg>'
 
       container.appendChild(link)

文件差異過大導致無法顯示
+ 0 - 0
docs/service-worker.js


+ 2 - 1
themes/infusion/static/js/dom-scripts.js

@@ -68,7 +68,8 @@
 
       var link = document.createElement('a')
       link.setAttribute('href', '#' + id)
-      link.setAttribute('aria-label', 'link for this section')
+      var headingText = heading.textContent
+      link.setAttribute('aria-label', 'To this ' + headingText + ' section')
       link.innerHTML = '<svg aria-hidden="true" viewBox="0 0 50 50" focusable="false"> <use xlink:href="#link"></use> </svg>'
 
       container.appendChild(link)

部分文件因文件數量過多而無法顯示