From b6ce0cf611182beee50e2809022d859291c52ea3 Mon Sep 17 00:00:00 2001 From: bcoles Date: Wed, 22 Feb 2012 20:10:38 +1030 Subject: [PATCH] Updated Detect Firebug module description --- modules/browser/detect_firebug/command.js | 4 ++-- modules/browser/detect_firebug/config.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/browser/detect_firebug/command.js b/modules/browser/detect_firebug/command.js index f706692f1..fe4926aa9 100644 --- a/modules/browser/detect_firebug/command.js +++ b/modules/browser/detect_firebug/command.js @@ -14,8 +14,8 @@ // limitations under the License. // beef.execute(function() { - var result = "Not Installed"; - if (window.console && (window.console.firebug || window.console.exception)) result = "Installed"; + var result = "Disabled or not installed"; + if (window.console && (window.console.firebug || window.console.exception)) result = "Enabled"; beef.net.send("<%= @command_url %>", <%= @command_id %>, "firebug="+result); }); diff --git a/modules/browser/detect_firebug/config.yaml b/modules/browser/detect_firebug/config.yaml index 8188b0ea3..50f54194b 100644 --- a/modules/browser/detect_firebug/config.yaml +++ b/modules/browser/detect_firebug/config.yaml @@ -19,7 +19,7 @@ beef: enable: true category: "Browser" name: "Detect FireBug" - description: "This module checks if the Mozilla Firefox Firebug extension is installed." + description: "This module checks if the Mozilla Firefox Firebug extension is being use to inspect the current window." authors: ["bcoles"] target: working: ["FF"]