Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Feeds
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MickGe
Feeds
Commits
14501332
Commit
14501332
authored
12 years ago
by
Andrew Dolgov
Browse files
Options
Downloads
Patches
Plain Diff
js: remove several commented out functions
parent
5b55e9e2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
js/tt-rss.js
+0
-20
0 additions, 20 deletions
js/tt-rss.js
js/viewfeed.js
+0
-35
0 additions, 35 deletions
js/viewfeed.js
with
0 additions
and
55 deletions
js/tt-rss.js
+
0
−
20
View file @
14501332
...
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
js/viewfeed.js
+
0
−
35
View file @
14501332
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment