summaryrefslogtreecommitdiff
path: root/lib/designsettings.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-08-08 18:11:47 +0000
committerZach Copley <zach@controlyourself.ca>2009-08-08 18:11:47 +0000
commite3bb64cd6ceb9519aaed435fcb7dccb7e16e674d (patch)
tree97f5b0a35565a4300f352dc308ee0089926c0f4e /lib/designsettings.php
parentc03d5932877c15eb673febabda5227df2173fbad (diff)
parent932d1fb7ce06081c788ea088171fd69ef03cd394 (diff)
Merge branch '0.8.x' into twitter-oauth
Diffstat (limited to 'lib/designsettings.php')
-rw-r--r--lib/designsettings.php17
1 files changed, 3 insertions, 14 deletions
diff --git a/lib/designsettings.php b/lib/designsettings.php
index 1b0e62166..a48ec9d22 100644
--- a/lib/designsettings.php
+++ b/lib/designsettings.php
@@ -311,13 +311,7 @@ class DesignSettingsAction extends AccountSettingsAction
function showStylesheets()
{
parent::showStylesheets();
- $farbtasticStyle =
- common_path('theme/base/css/farbtastic.css?version='.LACONICA_VERSION);
-
- $this->element('link', array('rel' => 'stylesheet',
- 'type' => 'text/css',
- 'href' => $farbtasticStyle,
- 'media' => 'screen, projection, tv'));
+ $this->cssLink('css/farbtastic.css','base','screen, projection, tv');
}
/**
@@ -330,13 +324,8 @@ class DesignSettingsAction extends AccountSettingsAction
{
parent::showScripts();
- $farbtasticPack = common_path('js/farbtastic/farbtastic.js');
- $userDesignGo = common_path('js/userdesign.go.js');
-
- $this->element('script', array('type' => 'text/javascript',
- 'src' => $farbtasticPack));
- $this->element('script', array('type' => 'text/javascript',
- 'src' => $userDesignGo));
+ $this->script('js/farbtastic/farbtastic.js');
+ $this->script('js/farbtastic/farbtastic.go.js');
}
/**