mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-30 08:39:58 +09:00
#919 js, css load at MOBILE enviroment like PC enviroment
This commit is contained in:
parent
dd02fec775
commit
f0a0bad151
1 changed files with 13 additions and 0 deletions
|
|
@ -451,10 +451,23 @@ class HTMLDisplayHandler
|
||||||
// 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.js', 'head', 'gte IE 9', -110000), true);
|
||||||
|
$oContext->loadFile(array('./common/js/x.js', 'head', '', -100000), true);
|
||||||
|
$oContext->loadFile(array('./common/js/common.js', 'head', '', -100000), true);
|
||||||
|
$oContext->loadFile(array('./common/js/js_app.js', 'head', '', -100000), true);
|
||||||
|
$oContext->loadFile(array('./common/js/xml_handler.js', 'head', '', -100000), true);
|
||||||
|
$oContext->loadFile(array('./common/js/xml_js_filter.js', 'head', '', -100000), true);
|
||||||
|
$oContext->loadFile(array('./common/css/xe.css', '', '', -1000000), true);
|
||||||
$oContext->loadFile(array('./common/css/mobile.css', '', '', -1000000), true);
|
$oContext->loadFile(array('./common/css/mobile.css', '', '', -1000000), true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
$oContext->loadFile(array('./common/js/jquery-1.x.min.js', 'head', 'lt IE 9', -111000), true);
|
||||||
|
$oContext->loadFile(array('./common/js/jquery.min.js', 'head', 'gte IE 9', -110000), true);
|
||||||
|
$oContext->loadFile(array('./common/js/x.min.js', 'head', '', -100000), true);
|
||||||
|
$oContext->loadFile(array('./common/js/xe.min.js', 'head', '', -100000), true);
|
||||||
|
$oContext->loadFile(array('./common/css/xe.min.css', '', '', -1000000), true);
|
||||||
$oContext->loadFile(array('./common/css/mobile.min.css', '', '', -1000000), true);
|
$oContext->loadFile(array('./common/css/mobile.min.css', '', '', -1000000), true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue