From 79947ab6eb3e21aa2f0e451e0a131c600994f6c3 Mon Sep 17 00:00:00 2001 From: antisnatchor Date: Thu, 9 Oct 2014 11:04:55 +0200 Subject: [PATCH] Fixed typo coming from last pull request merge preventing hooking to work. --- core/main/client/browser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/main/client/browser.js b/core/main/client/browser.js index 89c0e787e..b611abbf5 100644 --- a/core/main/client/browser.js +++ b/core/main/client/browser.js @@ -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.