I had my user info hardcoded... oops.
This commit is contained in:
parent
26b608d914
commit
380c486626
@ -39,19 +39,24 @@ class AutocompletePlugin extends Plugin
|
|||||||
}
|
}
|
||||||
|
|
||||||
function onEndShowScripts($action){
|
function onEndShowScripts($action){
|
||||||
$js_string = <<<EOT
|
if (common_logged_in()) {
|
||||||
|
$current_user = common_current_user();
|
||||||
|
$js_string = <<<EOT
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var current_user = { screen_name: 'CANDREWS', id: '1' };
|
var current_user = { id: '$current_user->id' };
|
||||||
</script>
|
</script>
|
||||||
EOT;
|
EOT;
|
||||||
$action->raw($js_string);
|
$action->raw($js_string);
|
||||||
$action->script('plugins/Autocomplete/jquery-autocomplete/jquery.autocomplete.pack.js');
|
$action->script('plugins/Autocomplete/jquery-autocomplete/jquery.autocomplete.pack.js');
|
||||||
$action->script('plugins/Autocomplete/Autocomplete.js');
|
$action->script('plugins/Autocomplete/Autocomplete.js');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function onEndShowLaconicaStyles($action)
|
function onEndShowLaconicaStyles($action)
|
||||||
{
|
{
|
||||||
$action->cssLink('plugins/Autocomplete/jquery-autocomplete/jquery.autocomplete.css');
|
if (common_logged_in()) {
|
||||||
|
$action->cssLink('plugins/Autocomplete/jquery-autocomplete/jquery.autocomplete.css');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user