summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-05-18 09:29:17 +0100
committerAndrew Dolgov <[email protected]>2006-05-18 09:29:17 +0100
commit2371c520c734769f8150ddf5101052bd0973337e (patch)
tree7938b23c0cf8d2de0ac8bf91d25e61c23ec3514e /prefs.js
parent0ceded7a4663fc05d5f4871b01ac66f9c6a7380e (diff)
disable some submit-type buttons when required data is not given
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/prefs.js b/prefs.js
index 2539c3b62..8622526dd 100644
--- a/prefs.js
+++ b/prefs.js
@@ -282,6 +282,9 @@ function addFeed() {
if (link.value.length == 0) {
alert("Error: No feed URL given.");
+ } else if (link.value.match("http://") == null &&
+ link.value.match("https://") == null) {
+ alert("Error: Invalid feed URL.");
} else {
notify("Adding feed...");