DEV: Update icon structure in bootbox buttons (#11925)

This commit is contained in:
Kris
2021-02-02 15:47:10 -05:00
committed by GitHub
parent 75d766499f
commit 2ee63a6a83
3 changed files with 10 additions and 12 deletions

View File

@@ -340,7 +340,7 @@ var bootbox = window.bootbox || (function(document, $) {
}
if (handlers[i]['icon']) {
icon = "<i class='"+handlers[i]['icon']+"'></i> ";
icon = handlers[i]['icon'];
}
if (handlers[i]['href']) {
@@ -350,7 +350,7 @@ var bootbox = window.bootbox || (function(document, $) {
href = _defaultHref;
}
buttons = buttons + "<a data-handler='"+i+"' class='"+_class+"' href='" + href + "'>"+icon+""+label+"</a>";
buttons = buttons + "<a data-handler='"+i+"' class='"+_class+"' href='" + href + "'>"+icon+"<span class='d-button-label'>"+label+"</span></a>";
callbacks[i] = callback;
}