groups-common.js: use FontAwesome for consistency

Signed-off-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
XhmikosR
2020-05-11 16:59:55 +03:00
parent 9b70e6dc53
commit ed528c00e6

View File

@@ -15,7 +15,7 @@ function showAlert(type, icon, title, message) {
case "info":
opts = {
type: "info",
icon: "glyphicon glyphicon-time",
icon: "far fa-clock",
title: title,
message: message
};
@@ -38,7 +38,7 @@ function showAlert(type, icon, title, message) {
case "warning":
opts = {
type: "warning",
icon: "glyphicon glyphicon-warning-sign",
icon: "fas fa-exclamation-triangle",
title: title,
message: message
};
@@ -52,7 +52,7 @@ function showAlert(type, icon, title, message) {
case "error":
opts = {
type: "danger",
icon: "glyphicon glyphicon-remove",
icon: "fas fa-times",
title: "&nbsp;<strong>Error, something went wrong!</strong><br>",
message: message
};