[-] BO : #PSFV-600 - Fix bug with Controller::addJqueryUI

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13805 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mDeflotte
2012-03-01 17:05:49 +00:00
parent 7ee4d89401
commit fac7db1502
2 changed files with 16 additions and 17 deletions
+8 -10
View File
@@ -2131,10 +2131,6 @@ class AdminProductsControllerCore extends AdminController
asort($this->available_tabs, SORT_NUMERIC);
$this->tpl_form_vars['tabs_preloaded'] = $this->available_tabs;
$this->addJqueryUI('ui.datepicker');
$this->addJqueryUI('ui.slider');
$this->addJS(_PS_JS_DIR_.'jquery/plugins/timepicker/jquery-ui-timepicker-addon.js');
// getLanguages init this->_languages
$this->getLanguages();
$languages = $this->_languages;
@@ -3928,8 +3924,9 @@ class AdminProductsControllerCore extends AdminController
$this->addJqueryUI(array(
'ui.core',
'ui.widget',
'ui.accordion',
'ui.slider'
'ui.accordion',
'ui.slider',
'ui.datepicker'
));
$this->addJS(array(
@@ -3944,13 +3941,14 @@ class AdminProductsControllerCore extends AdminController
_PS_JS_DIR_.'jquery/plugins/treeview/jquery.treeview.async.js',
_PS_JS_DIR_.'jquery/plugins/treeview/jquery.treeview.edit.js',
_PS_JS_DIR_.'admin-categories-tree.js',
_PS_JS_DIR_.'/jquery/ui/jquery.ui.progressbar.min.js'
_PS_JS_DIR_.'/jquery/ui/jquery.ui.progressbar.min.js',
_PS_JS_DIR_.'jquery/plugins/timepicker/jquery-ui-timepicker-addon.js'
));
$this->addCSS(array(
_PS_JS_DIR_.'jquery/plugins/treeview/jquery.treeview.css',
_PS_JS_DIR_.'jquery/plugins/timepicker/jquery-ui-timepicker-addon.css',
));
_PS_JS_DIR_.'jquery/plugins/treeview/jquery.treeview.css',
_PS_JS_DIR_.'jquery/plugins/timepicker/jquery-ui-timepicker-addon.css',
));
}
}