1
0
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:
Andrew Dolgov
2007-05-14 06:41:04 +01:00
parent 144f32d941
commit 442d77f1cc
8 changed files with 119 additions and 34 deletions

View File

@@ -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)) {