Corner pattern

I am trying to create a tab creation sample with ui bootstrap . The sample works on plunker but does not work when I try to use the same code locally.

I have the correct links to the javascript file (script.js) from index.html.

Any inputs?

+4
source share
1 answer

This is because plunker used the link path to the network . When viewing the same file locally, it is converted to the file: // protocol. Replacing it with https worked!

+3
source

All Articles