From 0d32b41e36fffa800991267b637d9344cb88fd2e Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 2 Mar 2007 20:16:45 +0100 Subject: interface tweaks, add info/question/exclamation pics --- functions.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'functions.js') diff --git a/functions.js b/functions.js index 991c0715d..da12a3c36 100644 --- a/functions.js +++ b/functions.js @@ -155,11 +155,13 @@ function notify_real(msg, doc, no_hide, is_err) { // n.style.backgroundColor = "#ffcccc"; // n.style.color = "black"; // n.style.borderColor = "#ff0000"; + msg = " " + msg; } else { n.className = "notify"; // n.style.backgroundColor = "#fff7d5"; // n.style.borderColor = "#d7c47a"; // n.style.color = "black"; + msg = " " + msg; } // msg = " " + msg; @@ -1396,7 +1398,7 @@ function toggleSubmitNotEmpty(e, submit_id) { } function isValidURL(s) { - return s.match("http://") != null || s.match("https://") != null; + return s.match("http://") != null || s.match("https://") != null || s.match("feed://") != null; } function qafAdd() { -- cgit v1.2.3-54-g00ecf