Include the browse javascript for row linking.

This commit is contained in:
Andrew McMillan 2010-02-12 15:50:16 -08:00
parent 34ef2693a3
commit e5aaa69493

View File

@ -12,7 +12,9 @@ param_to_global('component', '{[a-z0-9-_]+}', 't');
param_to_global('id', '{[a-z0-9-_]+}', 'id'); param_to_global('id', '{[a-z0-9-_]+}', 'id');
$c->stylesheets[] = 'css/'.$action.'.css'; $c->stylesheets[] = 'css/'.$action.'.css';
// $c->scripts[] = 'js/'.$action.'.js'; if ( $c->enable_row_linking ) {
$c->scripts[] = 'js/browse.js';
}
require_once('interactive-page.php'); require_once('interactive-page.php');