HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Please upgrade here. These earlier versions are no longer being updated and have security issues.
Add some .js file
This discussion is related to the MinusBaseline addon.

i want to add a some .js script like this..
ex : <script src="http://example.com/js/animation.js" type="text/javascript" charset="UTF-8"></script>
0
Comments
Find following lines in
class.minusbaselinethemehooks.php
:and add
$Sender->AddJsFile($this->GetResource('js/animation.js', false, false));
below. You also have to put your js file in the js folder of the MinusBasline theme.thanks.
but i want to add some .js Link
after add this code my site load blank page
Try
$Sender->AddJsFile('animation.js');
instead of the above.Great @R_J
it work! 