mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-14 04:25:56 +00:00
help uses popup window, recolor infoBox, use subscribe dialog in prefs
This commit is contained in:
16
functions.js
16
functions.js
@@ -1389,6 +1389,22 @@ function infobox_callback() {
|
||||
}
|
||||
}
|
||||
|
||||
function helpbox_callback() {
|
||||
if (xmlhttp.readyState == 4) {
|
||||
var box = document.getElementById('helpBox');
|
||||
var shadow = document.getElementById('helpBoxShadow');
|
||||
if (box) {
|
||||
box.innerHTML=xmlhttp.responseText;
|
||||
if (shadow) {
|
||||
shadow.style.display = "block";
|
||||
} else {
|
||||
box.style.display = "block";
|
||||
}
|
||||
}
|
||||
notify("");
|
||||
}
|
||||
}
|
||||
|
||||
function addFilter() {
|
||||
|
||||
if (!xmlhttp_ready(xmlhttp)) {
|
||||
|
||||
Reference in New Issue
Block a user