diff options
| author | xue <> | 2006-02-17 05:19:25 +0000 | 
|---|---|---|
| committer | xue <> | 2006-02-17 05:19:25 +0000 | 
| commit | 7b38480de52c1d042ea542e2d06913a8c9b645fc (patch) | |
| tree | 67ff025fb171a5325ac8fdc75a281ce8a19a2bd5 /framework/Web/UI/TClientScriptManager.php | |
| parent | ae1c1995b2fec431afe7cca23b2697e1bef17baf (diff) | |
Add TApplicationComponent class and adjusted the relevant classes.
Diffstat (limited to 'framework/Web/UI/TClientScriptManager.php')
| -rw-r--r-- | framework/Web/UI/TClientScriptManager.php | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/framework/Web/UI/TClientScriptManager.php b/framework/Web/UI/TClientScriptManager.php index fd5a6eec..1ea4175d 100644 --- a/framework/Web/UI/TClientScriptManager.php +++ b/framework/Web/UI/TClientScriptManager.php @@ -140,7 +140,7 @@ class TClientScriptManager extends TComponent  				$base = Prado::getFrameworkPath();  				$clientScripts = self::SCRIPT_DIR;  				$file = "{$base}/{$clientScripts}/{$lib}.js"; -				Prado::getApplication()->getAssetManager()->publishFilePath($file); +				$this->publishFilePath($file);  				$this->_publishedScriptFiles[$lib] = true;  			}  		} @@ -159,7 +159,7 @@ class TClientScriptManager extends TComponent  			$base = Prado::getFrameworkPath();  			$clientScripts = self::SCRIPT_DIR;  			$file = "{$base}/{$clientScripts}/{$scriptFile}"; -			$url= Prado::getApplication()->getAssetManager()->publishFilePath($file); +			$url= $this->publishFilePath($file);  			$this->_publishedScriptFiles[$scriptFile] = $url;  			return $url;  		} | 
