summaryrefslogtreecommitdiff
path: root/js/viewfeed.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/viewfeed.js
parent5b55e9e25cfca0229f1e00aee6a9aee6c1510611 (diff)
js: remove several commented out functions
Diffstat (limited to 'js/viewfeed.js')
-rw-r--r--js/viewfeed.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/js/viewfeed.js b/js/viewfeed.js
index a59e28a5f..d575dc6d1 100644
--- a/js/viewfeed.js
+++ b/js/viewfeed.js
@@ -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);