Added category screen

For the moment only a category list is displayed, there is no logic of any type
This commit is contained in:
Markel Arizaga 2014-10-26 13:34:22 +01:00
parent d1c7059751
commit 6b0d08f28d
4 changed files with 120 additions and 2 deletions

View file

@ -187,6 +187,15 @@ TinyTinyRSS.prototype.setArticleUnpublished = function(article, callback) {
this.setArticlesUnpublished([article], callback);
};
TinyTinyRSS.prototype.getCategories = function (callback) {
var options = {
unread_only: true,
enable_nested: false,
include_empty: false
};
this.doOperation("getCategories", options, callback);
}
TinyTinyRSS.prototype.append = function(key, array) {
var tmp = localStorage[key];