mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-09 12:02:24 +09:00
fix #623 오타 수정
This commit is contained in:
parent
3f38f32f99
commit
a5f082e081
2 changed files with 4 additions and 4 deletions
|
|
@ -394,7 +394,7 @@ class HTMLDisplayHandler
|
||||||
$lang_type = Context::getLangType();
|
$lang_type = Context::getLangType();
|
||||||
|
|
||||||
// add common JS/CSS files
|
// add common JS/CSS files
|
||||||
if(__DEBUG__ || !_XE_VERSION_STABLE__)
|
if(__DEBUG__ || !__XE_VERSION_STABLE__)
|
||||||
{
|
{
|
||||||
$oContext->loadFile(array('./common/js/jquery-1.x.js', 'head', 'lt IE 9', -111000), true);
|
$oContext->loadFile(array('./common/js/jquery-1.x.js', 'head', 'lt IE 9', -111000), true);
|
||||||
$oContext->loadFile(array('./common/js/jquery.js', 'head', 'gte IE 9', -110000), true);
|
$oContext->loadFile(array('./common/js/jquery.js', 'head', 'gte IE 9', -110000), true);
|
||||||
|
|
@ -417,7 +417,7 @@ class HTMLDisplayHandler
|
||||||
// for admin page, add admin css
|
// for admin page, add admin css
|
||||||
if(Context::get('module') == 'admin' || strpos(Context::get('act'), 'Admin') > 0)
|
if(Context::get('module') == 'admin' || strpos(Context::get('act'), 'Admin') > 0)
|
||||||
{
|
{
|
||||||
if(__DEBUG__ || !_XE_VERSION_STABLE__)
|
if(__DEBUG__ || !__XE_VERSION_STABLE__)
|
||||||
{
|
{
|
||||||
$oContext->loadFile(array('./modules/admin/tpl/css/admin.css', '', '', 10), true);
|
$oContext->loadFile(array('./modules/admin/tpl/css/admin.css', '', '', 10), true);
|
||||||
$oContext->loadFile(array("./modules/admin/tpl/css/admin_{$lang_type}.css", '', '', 10), true);
|
$oContext->loadFile(array("./modules/admin/tpl/css/admin_{$lang_type}.css", '', '', 10), true);
|
||||||
|
|
@ -449,7 +449,7 @@ class HTMLDisplayHandler
|
||||||
$lang_type = Context::getLangType();
|
$lang_type = Context::getLangType();
|
||||||
|
|
||||||
// add common JS/CSS files
|
// add common JS/CSS files
|
||||||
if(__DEBUG__ || !_XE_VERSION_STABLE__)
|
if(__DEBUG__ || !__XE_VERSION_STABLE__)
|
||||||
{
|
{
|
||||||
$oContext->loadFile(array('./common/css/mobile.css', '', '', -1000000), true);
|
$oContext->loadFile(array('./common/css/mobile.css', '', '', -1000000), true);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -160,7 +160,7 @@ class FrontEndFileHandler extends Handler
|
||||||
|
|
||||||
if(strpos($file->filePath, '://') === FALSE)
|
if(strpos($file->filePath, '://') === FALSE)
|
||||||
{
|
{
|
||||||
if(!__DEBUG__ && _XE_VERSION_STABLE__)
|
if(!__DEBUG__ && __XE_VERSION_STABLE__)
|
||||||
{
|
{
|
||||||
// if no debug mode, load minifed file
|
// if no debug mode, load minifed file
|
||||||
$minifiedFileName = implode('.', array($file->fileNameNoExt, 'min', $file->fileExtension));
|
$minifiedFileName = implode('.', array($file->fileNameNoExt, 'min', $file->fileExtension));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue