Skip to content
Snippets Groups Projects
Commit 14501332 authored by Andrew Dolgov's avatar Andrew Dolgov
Browse files

js: remove several commented out functions

parent 5b55e9e2
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
......@@ -1475,41 +1475,6 @@ function show_labels_in_headlines(transport) {
}
}
/* function toggleHeadlineActions() {
try {
var e = $("headlineActionsBody");
var p = $("headlineActionsDrop");
if (!Element.visible(e)) {
Element.show(e);
} else {
Element.hide(e);
}
e.scrollTop = 0;
e.style.left = (p.offsetLeft + 1) + "px";
e.style.top = (p.offsetTop + p.offsetHeight + 2) + "px";
} catch (e) {
exception_error("toggleHeadlineActions", e);
}
} */
/* function publishWithNote(id, def_note) {
try {
if (!def_note) def_note = '';
var note = prompt(__("Please enter a note for this article:"), def_note);
if (note != undefined) {
togglePub(id, false, false, note);
}
} catch (e) {
exception_error("publishWithNote", e);
}
} */
function dismissArticle(id) {
try {
var elem = $("RROW-" + id);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment