mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 15:25:56 +00:00
js: make displayHelpInfobox() globally accessible
This commit is contained in:
@@ -1731,4 +1731,12 @@ function getSelectedArticleIds2() {
|
||||
return ids;
|
||||
}
|
||||
|
||||
function displayHelpInfobox(topic_id) {
|
||||
|
||||
var url = "backend.php?op=help&tid=" + param_escape(topic_id);
|
||||
|
||||
var w = window.open(url, "ttrss_help",
|
||||
"status=0,toolbar=0,location=0,width=450,height=500,scrollbars=1,menubar=0");
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
12
prefs.js
12
prefs.js
@@ -856,18 +856,6 @@ function feedCatEditSave() {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
|
||||
function displayHelpInfobox(topic_id) {
|
||||
|
||||
var url = "backend.php?op=help&tid=" + param_escape(topic_id);
|
||||
|
||||
var w = window.open(url, "ttrss_help",
|
||||
"status=0,toolbar=0,location=0,width=450,height=500,scrollbars=1,menubar=0");
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
function labelEditCancel() {
|
||||
|
||||
if (!xmlhttp_ready(xmlhttp)) {
|
||||
|
||||
Reference in New Issue
Block a user