Added category screen
For the moment only a category list is displayed, there is no logic of any type
This commit is contained in:
parent
d1c7059751
commit
6b0d08f28d
4 changed files with 120 additions and 2 deletions
|
@ -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];
|
||||
|
||||
|
|
Reference in a new issue