Page::addJsFooterLibrary()
\nn\t3::Page()->addJsFooterLibrary($path, $compress = false, $atTop = false, $wrap = false, $concat = false);
JS library at the end of the `` inject
\nn\t3::Page()->addJsFooterLibrary( 'path/to/file.js' );
Copied!
@return void``
Source Code
public function addJsFooterLibrary($path, $compress = false, $atTop = false, $wrap = false, $concat = false ) {
$this->getPageRenderer()->addJsFooterLibrary( $path, $path, NULL, $compress, $atTop, $wrap, $concat );
}
Copied!