Page::addJsFooterFile() 

\nn\t3::Page()->addJsFooterFile($path, $compress = false, $atTop = false, $wrap = false, $concat = false); 

JS file at the end of the `` inject See nnt3::Page()->addJsFooterFile() for simpler version.

\nn\t3::Page()->addJsFooterFile( 'path/to/file.js' );
Copied!

@return void``

Source Code 

public function addJsFooterFile($path, $compress = false, $atTop = false, $wrap = false, $concat = false ) {
	$this->getPageRenderer()->addJsFooterFile( $path, NULL, $compress, $atTop, $wrap, $concat );
}
Copied!