forked from NodeBB/nodebb-plugin-composer-quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
46 lines (46 loc) · 1.79 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-quill-updated",
"url": "https://github.com/NodeBB/nodebb-plugin-composer-quill",
"library": "library.js",
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:admin.header.build", "method": "addAdminNavigation" },
{ "hook": "filter:composer.build", "method": "build" },
{ "hook": "filter:post.create", "method": "savePost" },
{ "hook": "filter:post.edit", "method": "savePost" },
{ "hook": "filter:composer.push", "method": "append" },
{ "hook": "filter:messaging.save", "method": "saveChat" },
{ "hook": "filter:post.getRawPost", "method": "handleRawPost" }
],
"css": [
"../quill/dist/quill.snow.css",
"../quill/dist/quill.bubble.css"
],
"less": [
"../nodebb-plugin-composer-default/static/less/composer.less",
"./static/less/overrides.less"
],
"modules": {
"quill.js": "../quill/dist/quill.js",
"quill-emoji.js": "./static/lib/emoji.js"
},
"acpScripts": [
"./static/lib/admin.js"
],
"scripts": [
"./static/lib/quill-nbb.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/tags.js",
"../nodebb-plugin-composer-default/static/lib/composer/uploads.js",
"../screenfull/dist/screenfull.js"
],
"templates": "static/templates"
}