remove sign_* from init params

This commit is contained in:
Andrew Dolgov 2013-03-21 21:49:52 +04:00
parent 82ac531154
commit a60446bed0
2 changed files with 3 additions and 8 deletions

View File

@ -1831,11 +1831,6 @@
function make_init_params($link) {
$params = array();
$params["sign_progress"] = "images/indicator_white.gif";
$params["sign_progress_tiny"] = "images/indicator_tiny.gif";
$params["sign_excl"] = "images/sign_excl.svg";
$params["sign_info"] = "images/sign_info.svg";
foreach (array("ON_CATCHUP_SHOW_NEXT_FEED", "HIDE_READ_FEEDS",
"ENABLE_FEED_CATS", "FEEDS_SORT_BY_UNREAD", "CONFIRM_FEED_CATCHUP",
"CDM_AUTO_CATCHUP", "FRESH_ARTICLE_MAX_AGE", "DEFAULT_ARTICLE_LIMIT",

View File

@ -201,13 +201,13 @@ function notify_real(msg, no_hide, n_type) {
n.className = "notify";
} else if (n_type == 2) {
n.className = "notifyProgress";
msg = "<img src='"+getInitParam("sign_progress")+"'> " + msg;
msg = "<img src='images/indicator_white.gif'> " + msg;
} else if (n_type == 3) {
n.className = "notifyError";
msg = "<img src='"+getInitParam("sign_excl")+"'> " + msg;
msg = "<img src='images/sign_excl.svg'> " + msg;
} else if (n_type == 4) {
n.className = "notifyInfo";
msg = "<img src='"+getInitParam("sign_info")+"'> " + msg;
msg = "<img src='images/sign_info.svg'> " + msg;
}
// msg = "<img src='images/live_com_loading.gif'> " + msg;