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:
@@ -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() {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user