- 
          
 - 
                Notifications
    
You must be signed in to change notification settings  - Fork 6.2k
 
Add comment highlight when target from url #9047
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
73e3c0b
              558d9e3
              7f30f04
              468c6a1
              7a6148f
              0ca937a
              301a87d
              c95dd50
              72d830d
              a48e045
              1329df2
              690d1d7
              3fa6466
              f44022f
              4799253
              c354b1b
              e373dae
              b18df46
              File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| 
          
            
          
           | 
    @@ -582,6 +582,25 @@ function initInstall() { | |
| }); | ||
| } | ||
| 
     | 
||
| function initIssueComments() { | ||
| if ($('.repository.view.issue .comments').length === 0) return; | ||
| 
     | 
||
| $(document).click((event) => { | ||
| const $target = $(event.target); | ||
| 
     | 
||
| if ($target.closest('.comment').length === 0) { | ||
| if (window.location.hash.length > 0) { | ||
| const i = window.location.toString().indexOf('#'); | ||
| 
     | 
||
| if (i >= 0) { | ||
                
       | 
||
| window.history.pushState({}, '', window.location.toString().substr(0, i)); | ||
| window.location.reload(); | ||
                
       | 
||
| } | ||
| } | ||
| } | ||
| }); | ||
| } | ||
| 
     | 
||
| function initRepository() { | ||
| if ($('.repository').length === 0) { | ||
| return; | ||
| 
          
            
          
           | 
    @@ -729,6 +748,9 @@ function initRepository() { | |
| return false; | ||
| }); | ||
| 
     | 
||
| // Issue Comments | ||
| initIssueComments(); | ||
| 
     | 
||
| // Edit issue or comment content | ||
| $('.edit-content').click(function () { | ||
| const $segment = $(this).parent().parent().parent() | ||
| 
          
            
          
           | 
    ||
Uh oh!
There was an error while loading. Please reload this page.