summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authordavehauenstein <davehauenstein@d4e419ec-0920-11de-bbfd-a7c1bc4c261e>2009-04-20 21:39:12 +0000
committerdavehauenstein <davehauenstein@d4e419ec-0920-11de-bbfd-a7c1bc4c261e>2009-04-20 21:39:12 +0000
commit8411673a282c5ad24cdc5560e5e018e3db7ea5fd (patch)
tree30421163ee6451a1be8863660d014ac8e5ca7bda /js
parent3a0b64807961f056517a45e1600ac7b3b72d35d4 (diff)
downloadreadability-simple-8411673a282c5ad24cdc5560e5e018e3db7ea5fd.tar.bz2
readability-simple-8411673a282c5ad24cdc5560e5e018e3db7ea5fd.zip
reply-to email header is now set to the user who sent the link
git-svn-id: http://arc90labs-readability.googlecode.com/svn/trunk@40 d4e419ec-0920-11de-bbfd-a7c1bc4c261e
Diffstat (limited to 'js')
-rwxr-xr-xjs/readability.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/readability.js b/js/readability.js
index 7259ccb..b5f2347 100755
--- a/js/readability.js
+++ b/js/readability.js
@@ -1,5 +1,5 @@
var readabilityVersion = "0.4";
-var emailSrc = 'http://lab.arc90.com/experiments/readability/email.php';
+var emailSrc = 'http://davehauenstein.com/readabilityTest/email.php';
var iframeLoads = 0;
(function(){
@@ -234,7 +234,7 @@ function emailBox() {
var emailContainer = document.createElement('div');
emailContainer.setAttribute('id', 'email-container');
- emailContainer.innerHTML = '<iframe src="'+emailSrc + '?pageUrl='+escape(window.location)+'&pageTitle='+escape(document.title)+'" scrolling="no" onload="removeFrame()" style="width:480px; height: 460px; border: 0;"></iframe>';
+ emailContainer.innerHTML = '<iframe src="'+emailSrc + '?pageUrl='+escape(window.location)+'&pageTitle='+escape(document.title)+'" scrolling="no" onload="removeFrame()" style="width:500px; height: 490px; border: 0;"></iframe>';
document.body.appendChild(emailContainer);
}