function addJsLibraryFile($file)
 {
     $file = NextendFilesystem::getBasePath() . NextendFilesystem::getLibraryPath() . 'javascript/modernizr/' . $file;
     $this->addJsFile($file);
 }
Example #2
0
 function removeJsLibraryFile($file)
 {
     $file = NextendFilesystem::getBasePath() . NextendFilesystem::getLibraryPath() . 'javascript/jquery/1.9.1/' . $file;
     $this->removeJsFile($file);
 }