mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-24 18:58:46 +02:00
Started to rewrite CKEDITOR placeholder plugin for CKEDITOR5.
This commit is contained in:
parent
a33e93826a
commit
eba89cee62
8 changed files with 374 additions and 1 deletions
16
assets/ckeditor/plugins/PartDBLabel/PartDBLabel.js
Normal file
16
assets/ckeditor/plugins/PartDBLabel/PartDBLabel.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
import PartDBLabelUI from "./PartDBLabelUI";
|
||||
import PartDBLabelEditing from "./PartDBLabelEditing";
|
||||
|
||||
import "./PartDBLabel.css";
|
||||
|
||||
import Plugin from "@ckeditor/ckeditor5-core/src/plugin";
|
||||
|
||||
export default class PartDBLabel extends Plugin {
|
||||
static get requires() {
|
||||
return [PartDBLabelUI, PartDBLabelEditing];
|
||||
}
|
||||
|
||||
static get pluginName() {
|
||||
return 'PartDBLabel';
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue