Corrected JSON.stringify failing in IE8, plus added generic return message for browsers not supporting navigator.plugins. Ref Issue #40

git-svn-id: https://beef.googlecode.com/svn/trunk@594 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
passbe
2010-12-04 00:54:04 +00:00
parent 37c75f68dc
commit ea64c4c2c7
2 changed files with 56 additions and 4 deletions

View File

@@ -276,6 +276,8 @@ beef.browser = {
results += ',';
results += navigator.plugins[i].name;
}
} else {
results = 'navigator.plugins is not supported in this browser!';
}
return results;
},