<embarassed>OK -- I was missing a script or two</embarassed>
So now I've locked and loaded the following:
class Page_Controller extends ContentController {
public static $allowed_actions = array(
);
public function init() {
parent::init();
Requirements::javascript(THIRDPARTY_DIR.'/jquery/jquery.min.js'); //include jquery bundled with ss
Requirements::javascript('themes/'. SSViewer::current_theme() .'/javascript/lightbox.js'); //link to js file in current theme folder
Requirements::javascript('themes/'. SSViewer::current_theme() .'/javascript/effects.js');
Requirements::javascript('themes/'. SSViewer::current_theme() .'/javascript/prototype.js');
Requirements::javascript('themes/'. SSViewer::current_theme() .'/javascript/scriptaculous.js');
Requirements::javascript('themes/'. SSViewer::current_theme() .'/javascript/builder.js');
}
}
I now have two instances of builder.js and effects.js showing up -- but lightbox still isn't working... ?