From 8c801d25c0858beb06e9202d958d6c075c7b1719 Mon Sep 17 00:00:00 2001
From: MoyuScript
Date: Sat, 18 Feb 2012 22:50:11 +0100
Subject: [PATCH] add a note about NoScript's ABE, small fix
---
bookmarklet.html | 4 ++++
src/plugins/bookmarklet.js | 1 +
2 files changed, 5 insertions(+)
diff --git a/bookmarklet.html b/bookmarklet.html
index 8959736..cb759c5 100644
--- a/bookmarklet.html
+++ b/bookmarklet.html
@@ -42,6 +42,10 @@
click / tap that link and then bookmark the page, edit the bookmark and remove the start up until including #_remove_this_
part at the beginning of the URL, it must start with: javascript:
to be correct.
+ If you are using Firefox and the NoScript Addon: disable the ABE part of it, + took me quite some time to figure out that the reason for an unreliable bookmarklet was in NoScript... +
If you are a developer and want to debug locally (you need the source tree of your html2canvas at: diff --git a/src/plugins/bookmarklet.js b/src/plugins/bookmarklet.js index fe0a256..61c8b57 100644 --- a/src/plugins/bookmarklet.js +++ b/src/plugins/bookmarklet.js @@ -68,6 +68,7 @@ statusline.style.border = '1px solid black'; statusline.style.borderBottomWidth = '0px'; statusline.style.padding = '2px 5px'; + statusline.style.zIndex = 9999999; document.body.appendChild(statusline); loader.onload(); }());