diff options
Diffstat (limited to 'web_src/js')
-rw-r--r-- | web_src/js/index.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/web_src/js/index.js b/web_src/js/index.js index 4e53494eb0..69d2aafcc9 100644 --- a/web_src/js/index.js +++ b/web_src/js/index.js @@ -1852,6 +1852,27 @@ function initCodeView() { } }).trigger('hashchange'); } + $('.ui.fold-code').on('click', (e) => { + const $foldButton = $(e.target); + if ($foldButton.hasClass('fa-chevron-down')) { + $(e.target).parent().next().slideUp('fast', () => { + $foldButton.removeClass('fa-chevron-down').addClass('fa-chevron-right'); + }); + } else { + $(e.target).parent().next().slideDown('fast', () => { + $foldButton.removeClass('fa-chevron-right').addClass('fa-chevron-down'); + }); + } + }); + function insertBlobExcerpt(e) { + const $blob = $(e.target); + const $row = $blob.parent().parent(); + $.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); }); + }); + } + $('.ui.blob-excerpt').on('click', (e) => { insertBlobExcerpt(e); }); } function initU2FAuth() { |