forked from GNUsocial/gnu-social
Don't forget to strip 'Plugin'. (_MrB_ rocks, MMN-o sucks.)
Paths are like "plugins/Realtime/...", not "plugins/RealtimePlugin/...".
This commit is contained in:
parent
d6ca90bb21
commit
9a03ec98e7
@ -142,9 +142,9 @@ class RealtimePlugin extends Plugin
|
|||||||
|
|
||||||
public function onEndShowStylesheets(Action $action)
|
public function onEndShowStylesheets(Action $action)
|
||||||
{
|
{
|
||||||
$action->cssLink(self::staticPath(__CLASS__, 'css/realtimeupdate.css'),
|
$urlpath = self::staticPath(str_replace('Plugin','',__CLASS__),
|
||||||
null,
|
'css/realtimeupdate.css');
|
||||||
'screen, projection, tv');
|
$action->cssLink($urlpath, null, 'screen, projection, tv');
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -391,7 +391,9 @@ class RealtimePlugin extends Plugin
|
|||||||
|
|
||||||
function _getScripts()
|
function _getScripts()
|
||||||
{
|
{
|
||||||
return array(self::staticPath(__CLASS__, 'js/realtimeupdate.js'));
|
$urlpath = self::staticPath(str_replace('Plugin','',__CLASS__),
|
||||||
|
'js/realtimeupdate.js');
|
||||||
|
return array($urlpath);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user