migrate to new git

This commit is contained in:
2025-08-29 01:27:25 +08:00
parent 946eb9961e
commit af2c152ef6
8623 changed files with 1000453 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 823 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1,16 @@

CKEDITOR.plugins.add('ContentBuilder', {
icons: 'ContentBuilder',
init: function (editor) {
editor.addCommand('ContentBuilder', {
exec: function (edt) {
window.open('../../App_Script/ContentBuilder/ContentBuilder.aspx?editor=' + edt.name, 'ContentBuilder');
}
});
editor.ui.addButton('ContentBuilder', {
label: '閃電編輯器', // ContentBuilder
command: 'ContentBuilder',
toolbar: 'paragraph'
});
}
});