Actions
Error #45
closedjquery-ui.css and jquery-ui-min.js not loaded correct
Start date:
2017-04-14
Due date:
2017-09-30
% Done:
100%
Estimated time:
Description
Accordion did'nt work cause jquery-ui.css and jquery-ui-min.js not loaded correct.
Changing /include/jquery/jquery_theme.js to following solves this issue:
***
var JQUERY_THEME = WB_URL+'/include/jquery';
if (typeof LoadOnFly==='undefined'){
$.insert(JQUERY_THEME+'/jquery-ui.css' );
} else {
LoadOnFly('head', JQUERY_THEME+'/jquery-ui.css' );
}
$.insert(JQUERY_THEME+'/jquery-ui-min.js');
});
Files
Actions