fixed path

This commit is contained in:
Ulf Gebhardt 2016-01-19 21:50:10 +01:00
parent 54f81421b3
commit f8158bfdea

View File

@ -4,9 +4,9 @@ class lib_tablesorter extends \LIB\lib_jscss{
public static function get_class(){ public static function get_class(){
return self::class;} return self::class;}
public static function js_path(){ public static function js_path(){
return \SYSTEM\WEBPATH(new \SYSTEM\PLIB(),'/tablesorter/lib/dist/js/jquery.tablesorter.min.js');} return new \SYSTEM\PLIB('/tablesorter/lib/dist/js/jquery.tablesorter.min.js');}
public static function css_path(){ public static function css_path(){
return \SYSTEM\WEBPATH(new \SYSTEM\PLIB(),'/tablesorter/lib/dist/css/jquery.tablesorter.pager.min.css');} return new \SYSTEM\PLIB('/tablesorter/lib/dist/css/jquery.tablesorter.pager.min.css');}
public static function version(){ public static function version(){
return '<a href="https://github.com/Mottie/tablesorter" target="_blank">https://github.com/Mottie/tablesorter</a> (commit: ?)';} return '<a href="https://github.com/Mottie/tablesorter" target="_blank">https://github.com/Mottie/tablesorter</a> (commit: ?)';}
} }