fix #9198 make diff detail sticky again (#9280)

This commit is contained in:
Benno 2019-12-08 02:01:57 +08:00 committed by techknowlogick
parent 0e56337f64
commit cecc31951c
1 changed files with 1 additions and 0 deletions

View File

@ -2019,6 +2019,7 @@ function initCodeView() {
$.get(`${$blob.data('url')}?${$blob.data('query')}&anchor=${$blob.data('anchor')}`, (blob) => {
$row.replaceWith(blob);
$(`[data-anchor="${$blob.data('anchor')}"]`).on('click', (e) => { insertBlobExcerpt(e); });
$('.diff-detail-box.ui.sticky').sticky();
});
}
$('.ui.blob-excerpt').on('click', (e) => { insertBlobExcerpt(e); });