1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

basic functionality pass 8

This commit is contained in:
Andrew Dolgov
2005-08-22 04:20:00 +01:00
parent 007bda3585
commit 71ad39598b
5 changed files with 56 additions and 15 deletions
+12
View File
@@ -77,6 +77,18 @@ function toggleSelectRow(sender) {
}
}
function addFeed() {
var link = document.getElementById("fadd_link").value;
var title = document.getElementById("fadd_title").value;
if (link.length == 0 || title.length == 0) {
notify("Error: all fields must be filled in.");
} else {
notify("addFeed : " + link + ", " + title);
}
}
function init() {