diff options
| -rw-r--r-- | util/gh-pages/index_template.html | 2 | ||||
| -rw-r--r-- | util/gh-pages/script.js | 7 |
2 files changed, 1 insertions, 8 deletions
diff --git a/util/gh-pages/index_template.html b/util/gh-pages/index_template.html index 012d4806c6c..9779e317fd7 100644 --- a/util/gh-pages/index_template.html +++ b/util/gh-pages/index_template.html @@ -150,7 +150,7 @@ Otherwise, have a great day =^.^= <h2 class="panel-title"> {# #} <div class="panel-title-name" id="lint-{{lint.id}}"> {# #} <span>{{lint.id}}</span> {#+ #} - <a href="#{{lint.id}}" class="anchor label label-default" onclick="openLint(event)">¶</a> {#+ #} + <a href="#{{lint.id}}" class="anchor label label-default">¶</a> {#+ #} <a href="" class="anchor label label-default" onclick="copyToClipboard(event)"> {# #} 📋 {# #} </a> {# #} diff --git a/util/gh-pages/script.js b/util/gh-pages/script.js index ac928621362..111555ca95f 100644 --- a/util/gh-pages/script.js +++ b/util/gh-pages/script.js @@ -151,13 +151,6 @@ function expandLint(lintId) { highlightIfNeeded(lintId); } -// Show details for one lint -function openLint(event) { - event.preventDefault(); - event.stopPropagation(); - expandLint(event.target.getAttribute("href").slice(1)); -} - function copyToClipboard(event) { event.preventDefault(); event.stopPropagation(); |
