From e635d56a000032fcfb48e93aad58be367a3cfa8d Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 20 Mar 2008 06:34:43 +0100 Subject: pref-feeds tweaks --- prefs.js | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) (limited to 'prefs.js') diff --git a/prefs.js b/prefs.js index 56de40ad3..43a554cf2 100644 --- a/prefs.js +++ b/prefs.js @@ -37,17 +37,17 @@ function replace_pubkey_callback() { if (new_link) { link.href = new_link.firstChild.nodeValue; - link.innerHTML = new_link.firstChild.nodeValue; + //link.innerHTML = new_link.firstChild.nodeValue; new Effect.Highlight(link); - notify_info("Address changed."); + notify_info("Published feed URL changed."); } else { - notify_error("Could not change address."); + notify_error("Could not change feed URL."); } } else { - notify_error("Could not change address."); + notify_error("Could not change feed URL."); } } catch (e) { exception_error("replace_pubkey_callback", e); @@ -1815,6 +1815,25 @@ function pubRegenKey() { return false; } +function pubToClipboard() { + + try { + + if (!xmlhttp_ready(xmlhttp)) { + printLockingError(); + return false; + } + + var link = document.getElementById("pubGenAddress"); + alert(link.href); + + } catch (e) { + exception_error("pubToClipboard", e); + } + + return false; +} + function validatePrefsSave() { try { -- cgit v1.2.3-54-g00ecf