Fixed typo coming from last pull request merge preventing hooking to work.

This commit is contained in:
antisnatchor
2014-10-09 11:04:55 +02:00
parent 9b92e0da35
commit 79947ab6eb

View File

@@ -874,14 +874,14 @@ beef.browser = {
* Returns a hash of string keys representing a given capability
* @example: beef.browser.capabilities()["navigator.plugins"]
*/
capabilities(): function() {
capabilities: function() {
var out = {};
var type = this.type();
out["navigator.plugins"] = (type.IE11 || !type.IE);
return out;
}
},
/**
* Returns the type of browser being used.