diff options
author | xue <> | 2007-08-28 19:33:29 +0000 |
---|---|---|
committer | xue <> | 2007-08-28 19:33:29 +0000 |
commit | ff402bd8de1edd97bb06d30d7600212b5fc22f16 (patch) | |
tree | 2db596f197ee4a399624d57a3f2e4b120abf5d02 /framework/Web/UI/WebControls/TKeyboard.php | |
parent | 888fa27278a1791dc77385bfdb60a52df54e898b (diff) |
moved css files to assets folder.
Diffstat (limited to 'framework/Web/UI/WebControls/TKeyboard.php')
-rw-r--r-- | framework/Web/UI/WebControls/TKeyboard.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/UI/WebControls/TKeyboard.php b/framework/Web/UI/WebControls/TKeyboard.php index 58af07ce..301e6cf3 100644 --- a/framework/Web/UI/WebControls/TKeyboard.php +++ b/framework/Web/UI/WebControls/TKeyboard.php @@ -143,7 +143,7 @@ class TKeyboard extends TWebControl protected function registerStyleSheet()
{
if(($url=$this->getCssUrl())==='')
- $url=$this->publishAsset('keyboard.css',__CLASS__);
+ $url=$this->getApplication()->getAssetManager()->publishFilePath(dirname(__FILE__).DIRECTORY_SEPARATOR.'assets'.DIRECTORY_SEPARATOR.'keyboard.css');
$this->getPage()->getClientScript()->registerStyleSheetFile($url,$url);
}
|