-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
47 lines (47 loc) · 1.58 KB
/
plugin.json
File metadata and controls
47 lines (47 loc) · 1.58 KB
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
47
{
"id": "nodebb-theme-thesis-custom",
"library": "library.js",
"hooks": [
{ "hook": "filter:teasers.get", "method": "getTeasers" },
{ "hook": "filter:widgets.getAreas", "method": "defineWidgetAreas" },
{ "hook": "filter:config.get", "method": "getThemeConfig" },
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:admin.header.build", "method": "addAdminNavigation" },
{ "hook": "filter:topic.build", "method": "addUserToTopic" },
{ "hook": "filter:topic.build", "method": "addOptionalDataToTopic" },
{ "hook": "filter:topic.create", "method": "topicCreate" },
{ "hook": "filter:account/profile.build", "method": "userBuild" },
{ "hook": "action:topic.lock", "method": "topicLock" },
{ "hook": "filter:topics.get", "method": "getCategoryTopics" },
{ "hook": "filter:topic.delete", "method": "topicDelete" },
{ "hook": "filter:topics.addPostData", "method": "addPostData" }
],
"less":[
"less/modules/topic_custom.less",
"less/modules/lightslider.less",
"less/modules/deleteImageButton.less",
"less/topic-note.less",
"less/votes-topic.less"
],
"scripts": [
"lib/persona.js",
"lib/imageSlideshow.js",
"lib/topic_custom.js",
"lib/topic_style.js",
"lib/topic_countdown.js",
"lib/modules/nprogress.js",
"lib/modules/autohidingnavbar.min.js",
"lib/modules/quickreply.js",
"lib/modules/deleteImageButton.js",
"lib/note_add.js",
"lib/lock_refresh.js"
],
"modules": {
"pulling.js": "node_modules/pulling/build/pulling-drawer.js",
"lightslider.js": "lib/modules/lightslider.js"
},
"acpScripts": [
"lib/admin.js"
],
"languages": "languages"
}