aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.4/examples/reddit-panel/data/panel.js
diff options
context:
space:
mode:
authorGravatar Rogan Creswick <creswick@galois.com>2012-03-31 08:08:11 -0700
committerGravatar Rogan Creswick <creswick@galois.com>2012-03-31 08:08:11 -0700
commitec532e93339a942a395829ec87f427852cd72e00 (patch)
treef6ad13ca7f90f26fda9bc23e428ee367f153e3d2 /tools/addon-sdk-1.4/examples/reddit-panel/data/panel.js
parent780bf48de85215f5b0b6fde0df40599ac6f9c037 (diff)
removed older addon-sdks from tools
Diffstat (limited to 'tools/addon-sdk-1.4/examples/reddit-panel/data/panel.js')
-rw-r--r--tools/addon-sdk-1.4/examples/reddit-panel/data/panel.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/tools/addon-sdk-1.4/examples/reddit-panel/data/panel.js b/tools/addon-sdk-1.4/examples/reddit-panel/data/panel.js
deleted file mode 100644
index 7c48a39..0000000
--- a/tools/addon-sdk-1.4/examples/reddit-panel/data/panel.js
+++ /dev/null
@@ -1,31 +0,0 @@
-// This is a content script. It executes inside the context of the Reddit page
-// loaded into the panel and has access to that page's window object and other
-// global objects (although the page does not have access to globals defined by
-// this script unless they are explicitly attached to the window object).
-//
-// This content script is injected into the context of the Reddit page
-// by the Panel API, which is accessed by the main add-on script in lib/main.js.
-// See that script for more information about how the panel is created.
-
-$(window).click(function (event) {
- var t = event.target;
-
- // Don't intercept the click if it isn't on a link.
- if (t.nodeName != "A")
- return;
-
- // Don't intercept the click if it was on one of the links in the header
- // or next/previous footer, since those links should load in the panel itself.
- if ($(t).parents('#header').length || $(t).parents('.nextprev').length)
- return;
-
- // Intercept the click, passing it to the addon, which will load it in a tab.
- event.stopPropagation();
- event.preventDefault();
- self.port.emit('click', t.toString());
-});
-
-// Panels have an OS-specific background color by default, and the Mac OS X
-// background color is dark grey, but Reddit expects its background to be white
-// and looks odd when it isn't, so set it to white.
-$("body").css("background", "white");