Reputation: 6180
I am trying out a sample to create tabs with ui bootstrap. The sample works on plunker but doesn't work when I try the same code locally.
I have the right references to the javascript file (script.js) from the index.html.
Any inputs?
Upvotes: 4
Views: 7282
Reputation: 6180
This was because plunker used a network-path reference. When viewing the same file locally it translates to a file:// protocol. Replacing it with https worked!
Upvotes: 3