
Originally Posted by
dukecomputerwiz
Never Mind I figured it out. For anyone else, you just need to add the the following code:
$files = loadCssJsFiles($css_files_to_load, $jscript_files_to_load);
foreach($files['css'] as $file)
if($file['include']) include($file['string']);
else echo $file['string'];
foreach($files['js'] as $file)
if($file['include']) include($file['string']);
else echo $file['string'];
Just before the debug section at the bottom of your original file. Not the file that came with the tabpro distribution.
Bookmarks