use correct icons for notifications
This commit is contained in:
parent
98d01eb19e
commit
6e3224a26c
|
@ -226,10 +226,10 @@ function notify_real(msg, no_hide, n_type) {
|
|||
no_hide = true;
|
||||
} else if (n_type == 3) {
|
||||
n.className = "notify error";
|
||||
msg = "<span><img src='images/sign_excl.svg'></span>" + msg;
|
||||
msg = "<span><img src='images/alert.png'></span>" + msg;
|
||||
} else if (n_type == 4) {
|
||||
n.className = "notify info";
|
||||
msg = "<span><img src='images/sign_info.svg'></span>" + msg;
|
||||
msg = "<span><img src='images/information.png'></span>" + msg;
|
||||
}
|
||||
|
||||
msg += " <span><img src=\"images/cross.png\" class=\"close\" title=\"" +
|
||||
|
|
Loading…
Reference in New Issue