summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-05-18 05:58:31 +0100
committerAndrew Dolgov <[email protected]>2006-05-18 05:58:31 +0100
commite5d758e3db48bd8613771d9c139de5017f1d7194 (patch)
treede61b3dfc4f251d655838169028195bbc5b1639b /prefs.js
parent7b5c6012d12c35f900dc8f20fdc103cc14959f3a (diff)
rework tab appearance, various interface improvements
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/prefs.js b/prefs.js
index a0348f926..bc6e8667f 100644
--- a/prefs.js
+++ b/prefs.js
@@ -145,22 +145,6 @@ function userlist_callback() {
}
}
-function infobox_callback() {
- if (xmlhttp.readyState == 4) {
- var box = document.getElementById('infoBox');
- var shadow = document.getElementById('infoBoxShadow');
- if (box) {
- box.innerHTML=xmlhttp.responseText;
- if (shadow) {
- shadow.style.display = "block";
- } else {
- box.style.display = "block";
- }
- }
- }
-}
-
-
function prefslist_callback() {
var container = document.getElementById('prefContent');
if (xmlhttp.readyState == 4) {
@@ -1346,17 +1330,6 @@ function init() {
}
}
-function closeInfoBox() {
- var box = document.getElementById('infoBox');
- var shadow = document.getElementById('infoBoxShadow');
-
- if (shadow) {
- shadow.style.display = "none";
- } else if (box) {
- box.style.display = "none";
- }
-}
-
function categorizeSelectedFeeds() {
if (!xmlhttp_ready(xmlhttp)) {