You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using audio.js in an Angular 2 web application. I included the dependencies in my index.html file like this : <script type="text/javascript" src="assets/lib/audiojs/audio.js"></script>
and using it in my code (TypeScript) like this :
declare var audiojs: any;
...
export class AudioPlayerComponent implements AfterViewInit {
ngAfterViewInit() {
audiojs.events.ready(function () {
var as = audiojs.createAll();
});
}
}
It works well with Chrome 55.0.2883.87 but with Firefox 50.1.0 it shows this error message :
I'm using audio.js in an Angular 2 web application. I included the dependencies in my index.html file like this :
<script type="text/javascript" src="assets/lib/audiojs/audio.js"></script>
and using it in my code (TypeScript) like this :
It works well with Chrome 55.0.2883.87 but with Firefox 50.1.0 it shows this error message :
Is it a bug or am I doing something wrong ? Please help me! Thanks!
The text was updated successfully, but these errors were encountered: