summaryrefslogtreecommitdiffstats
path: root/modules-available/bootstrap_timepicker
diff options
context:
space:
mode:
authorSimon Rettberg2017-05-10 17:36:05 +0200
committerSimon Rettberg2017-05-10 17:36:05 +0200
commit47657731433248410e681640b2a53c0783651134 (patch)
tree3ee31a268b89ec154be6169c0139067f066495c0 /modules-available/bootstrap_timepicker
parent[locationinfo] install: Match table column type to referenced table (diff)
downloadslx-admin-47657731433248410e681640b2a53c0783651134.tar.gz
slx-admin-47657731433248410e681640b2a53c0783651134.tar.xz
slx-admin-47657731433248410e681640b2a53c0783651134.zip
Add support to declare multiple css/js per module with loading condition:
A css/js can be declared to only load if the module in question is the page module being rendered, or to always be loaded even if the module is just a dependency. The second case is useful for plugin type modules. See one of the config.json files updated in this commit on how to specify css/js to load. true = always load, false = only if page module.
Diffstat (limited to 'modules-available/bootstrap_timepicker')
-rw-r--r--modules-available/bootstrap_timepicker/config.json8
1 files changed, 7 insertions, 1 deletions
diff --git a/modules-available/bootstrap_timepicker/config.json b/modules-available/bootstrap_timepicker/config.json
index d1261653..5a0c7960 100644
--- a/modules-available/bootstrap_timepicker/config.json
+++ b/modules-available/bootstrap_timepicker/config.json
@@ -1,3 +1,9 @@
{
- "dependencies" : []
+ "dependencies" : [],
+ "css": {
+ "style.css": true
+ },
+ "scripts": {
+ "clientscript.js": true
+ }
}