Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
457 B
11 lines
457 B
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'}); |
|
}
|
|
|