Reputation: 7347
I'm looking at some JavaScript code I found online and I see references to window.BrowserConfig
. I've been unable to find anything about this online. Exploring with the respective JS consoles, I see it's undefined in FF and Safari, but defined in Chrome.
Anyone know what it's for and what we can do with it?
Upvotes: 0
Views: 170
Reputation: 2714
You must be confusing with browserconfig.xml
, which use to be loaded with javascript
into the webpage. It is used by Windows 8 and Windows Phone to parse the data to integrate in a nice way on the Metro Interface (getting statistics, an icon and so on..)
But sorry, I'm pretty sure that window.BrowserConfig
does not exist.
Upvotes: 1