using marked in the aricle that is the starred
This commit is contained in:
parent
d2219b0259
commit
d123626f16
2 changed files with 37 additions and 10 deletions
|
@ -104,6 +104,18 @@ TinyTinyRSS.prototype.setArticleStarred = function(article_id) {
|
|||
}
|
||||
};
|
||||
|
||||
TinyTinyRSS.prototype.setArticleUnStarred = function(article_id) {
|
||||
var options = {
|
||||
article_ids: article_id,
|
||||
mode: 0,
|
||||
field: 0
|
||||
};
|
||||
|
||||
if (navigator.onLine) {
|
||||
this.doOperation("updateArticle", options);
|
||||
}
|
||||
};
|
||||
|
||||
TinyTinyRSS.prototype.setArticleUnread = function(article_id) {
|
||||
var options = {
|
||||
article_ids: article_id,
|
||||
|
|
Reference in a new issue