Correct browserName output.

This commit is contained in:
John-David Dalton
2014-04-28 23:35:51 -07:00
parent 55d52be3c2
commit 59b7bc7b98

View File

@@ -199,7 +199,7 @@ if (tunneled) {
* @returns {string} Returns the formal browser name.
*/
function browserName(identifier) {
return capitalizeWords(browserNameMap[identifier] || identifier);
return browserNameMap[identifier] || capitalizeWords(identifier);
}
/**