feat(plugins): progress on plugins page

This commit is contained in:
Torkel Ödegaard
2016-02-26 18:25:39 +01:00
parent b98e5690eb
commit c148d89004
15 changed files with 266 additions and 119 deletions

View File

@ -56,6 +56,10 @@ func (fp *FrontendPluginBase) handleModuleDefaults() {
}
func evalRelativePluginUrlPath(pathStr string, pluginId string) string {
if pathStr == "" {
return ""
}
u, _ := url.Parse(pathStr)
if u.IsAbs() {
return pathStr