mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
12 lines
457 B
JavaScript
12 lines
457 B
JavaScript
|
import {svg} from '../svg.js';
|
||
|
|
||
|
export function showLineButton() {
|
||
|
if ($('.code-line-menu').length === 0) return;
|
||
|
$('.code-line-button').remove();
|
||
|
$('.code-view td.lines-code.active').closest('tr').find('td:eq(0)').first().prepend(
|
||
|
$(`<button class="code-line-button">${svg('octicon-kebab-horizontal')}</button>`)
|
||
|
);
|
||
|
$('.code-line-menu').appendTo($('.code-view'));
|
||
|
$('.code-line-button').popup({popup: $('.code-line-menu'), on: 'click'});
|
||
|
}
|