diff --git a/classes/display/HTMLDisplayHandler.php b/classes/display/HTMLDisplayHandler.php
index 809c74d13..bae4af3b9 100644
--- a/classes/display/HTMLDisplayHandler.php
+++ b/classes/display/HTMLDisplayHandler.php
@@ -451,10 +451,23 @@ class HTMLDisplayHandler
// add common JS/CSS files
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);
}
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);
}
}