file://www.google-analytics.com/__utm.gif?utmwv=5.4.2&utmac=UA-16505296-2&u…Fexample.html&utmcc=__utma%3D1.5782357959.1.1.1.1%3B&utme=8(vjsv)9(v4.3.0)Failed to load resource: net::ERR_FILE_NOT_FOUND
video.js:6 'webkitMovementX' is deprecated.Please use 'movementX' instead.
video.js:6 'webkitMovementY' is deprecated.Please use 'movementY' instead.
Right, this would work if he were running it from a localhost of some kind. –
m59Mar 26 '14 at 20:13
I will add that normally protocol-relative URL's like this are a good thing, because they'll call the script withhttp:// or https:// depending on what protocol is used to load the page. –
Tim GoodmanMar 26 '14 at 20:25
Omitting http: is generally better, because it can infer http: or https:. It's just that in this case, it's inferring file:, which is not what is wanted. –
Tim GoodmanMar 27 '14 at 17:03
Only posting to help anyone else who did what i did. I spent hours trying to figure out why i was getting about a 100 of these errors. I had forgot i was messing around with ngRoute and had placed <base href="/"> in my index.html. After removing it everything works again.
http://
orhttps://
depending on what protocol is used to load the page. – Tim Goodman Mar 26 '14 at 20:25