I have a problem that I can't work out the problem at all. I can't get my 3rd party Javascript files to run in my views (though runs nicely when not using ng-view. An example below
Index.html
<main class="page-content" ng-controller="ViewController">
<div ng-view ng-cloak class="ng-cloak page-content-view"></div>
</main>
<script src="http://vjs.zencdn.net/4.11/video.js"></script>
<script src="/javascripts/app.js"></script>
partial.html
<video ng-cloak
class="ng-cloak video-js vjs-default-skin"
controls preload="auto" width="auto" height="auto"
data-setup='{"example_option":true}'>
<source src='{{video.src}}' type='video/mp4' />
</video>
Routing works fine. I have other examples as well with different Javascript files.
I have tried to load the Javascript files directly into partial.html, but no difference.
I am using angularjs version v1.3.8.
Thank you