concrete5 script clash with bootstrap.js

Permalink
I have included

<script type="text/javascript" src="<?= $view->getThemePath() ?>/assets/plugins/bootstrap/js/bootstrap.min.js"></script>

right before </body>. When I press on "Edit Area Design" on any Area, and toggle buttons, nothing happens. I can see in HTML, that class "open" is added to drop-down parent, and instantly removed. Only thing that helps, is removing bootstrap.js.

Versions of B.S. is Bootstrap v3.3.7 (http://getbootstrap.com)

Any advice?

 
trsh replied on at Permalink Reply
Concrete 8.1.0
trsh replied on at Permalink Reply
Solved with:

$this->providesAsset('css', 'bootstrap/*');
$this->providesAsset('javascript', 'bootstrap/*');