support separate css files for light/dark themes.

This commit is contained in:
woodsaj
2015-12-03 12:29:57 +08:00
parent 79d29db18b
commit 13864853a8
4 changed files with 18 additions and 7 deletions

View File

@@ -37,7 +37,8 @@ type ExternalPluginRoute struct {
}
type ExternalPluginJs struct {
Module string `json:"module"`
Module string `json:"module"`
Directive string `json:"Directive"`
}
type ExternalPluginNavLink struct {
@@ -48,7 +49,8 @@ type ExternalPluginNavLink struct {
}
type ExternalPluginCss struct {
Href string `json:"href"`
Light string `json:"light"`
Dark string `json:"dark"`
}
type ExternalPlugin struct {