mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
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.
31 lines
1.3 KiB
31 lines
1.3 KiB
import $ from 'jquery';
|
|
import {hideElem, showElem} from '../utils/dom.js';
|
|
|
|
export function initUnicodeEscapeButton() {
|
|
$(document).on('click', '.escape-button', (e) => {
|
|
e.preventDefault();
|
|
$(e.target).parents('.file-content, .non-diff-file-content').find('.file-code, .file-view').addClass('unicode-escaped');
|
|
hideElem($(e.target));
|
|
showElem($(e.target).siblings('.unescape-button'));
|
|
});
|
|
$(document).on('click', '.unescape-button', (e) => {
|
|
e.preventDefault();
|
|
$(e.target).parents('.file-content, .non-diff-file-content').find('.file-code, .file-view').removeClass('unicode-escaped');
|
|
hideElem($(e.target));
|
|
showElem($(e.target).siblings('.escape-button'));
|
|
});
|
|
$(document).on('click', '.toggle-escape-button', (e) => {
|
|
e.preventDefault();
|
|
const fileContent = $(e.target).parents('.file-content, .non-diff-file-content');
|
|
const fileView = fileContent.find('.file-code, .file-view');
|
|
if (fileView.hasClass('unicode-escaped')) {
|
|
fileView.removeClass('unicode-escaped');
|
|
hideElem(fileContent.find('.unescape-button'));
|
|
showElem(fileContent.find('.escape-button'));
|
|
} else {
|
|
fileView.addClass('unicode-escaped');
|
|
showElem(fileContent.find('.unescape-button'));
|
|
hideElem(fileContent.find('.escape-button'));
|
|
}
|
|
});
|
|
}
|
|
|