[-] FO : mobile theme : fix #PSCFV-4275 : delete calls to css and js not used

This commit is contained in:
lLefevre
2012-09-24 12:47:49 +00:00
parent 5f214dabfa
commit 9ca44ba0f4
4 changed files with 33 additions and 19 deletions
+12 -8
View File
@@ -36,15 +36,19 @@ class CategoryControllerCore extends FrontController
public function setMedia()
{
parent::setMedia();
//TODO : check why cluetip css is include without js file
$this->addCSS(array(
_THEME_CSS_DIR_.'scenes.css' => 'all',
_THEME_CSS_DIR_.'category.css' => 'all',
_THEME_CSS_DIR_.'product_list.css' => 'all',
));
if (Configuration::get('PS_COMPARATOR_MAX_ITEM') > 0)
$this->addJS(_THEME_JS_DIR_.'products-comparison.js');
if ($this->context->getMobileDevice() == false)
{
//TODO : check why cluetip css is include without js file
$this->addCSS(array(
_THEME_CSS_DIR_.'scenes.css' => 'all',
_THEME_CSS_DIR_.'category.css' => 'all',
_THEME_CSS_DIR_.'product_list.css' => 'all',
));
if (Configuration::get('PS_COMPARATOR_MAX_ITEM') > 0)
$this->addJS(_THEME_JS_DIR_.'products-comparison.js');
}
}
public function canonicalRedirection($canonicalURL = '')