-
Notifications
You must be signed in to change notification settings - Fork 28
/
plugin.json
46 lines (46 loc) · 1.89 KB
/
plugin.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"id": "nodebb-plugin-composer-redactor",
"url": "https://github.com/NodeBB/nodebb-plugin-composer-redactor",
"library": "library.js",
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:admin.header.build", "method": "addAdminNavigation" },
{ "hook": "filter:topic.post", "method": "sanitize" },
{ "hook": "filter:topic.reply", "method": "sanitize" },
{ "hook": "filter:post.edit", "method": "sanitize" },
{ "hook": "filter:composer.build", "method": "build" },
{ "hook": "filter:messaging.checkContent", "method": "checkContent" }
],
"css": [
"./static/css/redactor.css"
],
"less": [
"../nodebb-plugin-composer-default/static/less/composer.less",
"./static/less/redactor-overrides.less",
"./static/less/composer.less",
"./static/less/chats.less",
"./static/less/emoji.less"
],
"scripts": [
"./static/lib/redactor.core.js",
"./static/lib/redactor.js",
"./static/lib/video.js",
"./static/lib/table.js",
"./static/lib/redactor-emoticons.js",
"./static/lib/emojione.min.js",
"./static/lib/client.js",
"../nodebb-plugin-composer-default/static/lib/composer.js",
"../nodebb-plugin-composer-default/static/lib/composer/autocomplete.js",
"../nodebb-plugin-composer-default/static/lib/composer/categoryList.js",
"../nodebb-plugin-composer-default/static/lib/composer/controls.js",
"../nodebb-plugin-composer-default/static/lib/composer/drafts.js",
"../nodebb-plugin-composer-default/static/lib/composer/formatting.js",
"../nodebb-plugin-composer-default/static/lib/composer/preview.js",
"../nodebb-plugin-composer-default/static/lib/composer/resize.js",
"../nodebb-plugin-composer-default/static/lib/composer/scheduler.js",
"../nodebb-plugin-composer-default/static/lib/composer/tags.js",
"../nodebb-plugin-composer-default/static/lib/composer/uploads.js",
"./node_modules/screenfull/dist/screenfull.js"
],
"templates": "static/templates"
}