summaryrefslogtreecommitdiff
path: root/js/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-02-01 16:06:14 +0400
committerAndrew Dolgov <[email protected]>2013-02-01 16:06:14 +0400
commit14501332e0ea6fcf31d0396c2bc895350bbe23d0 (patch)
treee4aa43da865044436337403a2233d909ada9b515 /js/tt-rss.js
parent5b55e9e25cfca0229f1e00aee6a9aee6c1510611 (diff)
js: remove several commented out functions
Diffstat (limited to 'js/tt-rss.js')
-rw-r--r--js/tt-rss.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index 7cbe3cfc5..9d18519b2 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -534,26 +534,6 @@ function viewLimitChanged() {
return viewCurrentFeed('');
}
-/* function adjustArticleScore(id, score) {
- try {
-
- var pr = prompt(__("Assign score to article:"), score);
-
- if (pr != undefined) {
- var query = "?op=rpc&method=setScore&id=" + id + "&score=" + pr;
-
- new Ajax.Request("backend.php", {
- parameters: query,
- onComplete: function(transport) {
- viewCurrentFeed();
- } });
-
- }
- } catch (e) {
- exception_error("adjustArticleScore", e);
- }
-} */
-
function rescoreCurrentFeed() {
var actid = getActiveFeedId();