benjichung1
benjichung1
If you're having trouble developing on your local pc, adding port to the iframe's origin address may solve it. I solved it that way.
@jmoseman01 If you are using the IFrame API, , you should always specify your domain as the origin parameter value. This library considers the domain, but not the port. Therefore,...
@jmoseman01 After downloading the library, I just modified the line 50 of the source code (ng-youtube-embed.js) from **'options.origin = host;'** to **'options.origin = host + ':' + window.location.port;'** That's all...