Join the Stack Overflow Community
Stack Overflow is a community of 4.7 million programmers, just like you, helping each other.
Join them; it only takes a minute:
Sign up

I have made a WPF application with a browser and set it to go to a website which is using firebase and angularjs. When I run the program I get errors such as "Unable to get property 'prototype' of undefined or null reference" and it shows the source of this error as angular.min.js. Another error is within the firebase.js file and it just says "Script error". The website works perfectly on actual browsers such as Chrome or even IE11. How can I fix these errors?

Thanks in advance!

share|improve this question
up vote 0 down vote accepted

Show me your html file where you import angular.min.js and firebase.js. Maby can be fixed with a DOCTYPE:

<!DOCTYPE html>

And a meta tag:

<meta http-equiv="X-UA-Compatible" content="IE=edge" />
share|improve this answer
    
Thanks for that! It worked perfectly – Web Developer 19 hours ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.