Skip to content

Commit

Permalink
F OpenNebula#2623: add icon
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Lobo <jlobo@opennebula.systems>
  • Loading branch information
Jorge Lobo committed Oct 3, 2019
1 parent 229e239 commit 0ae7204
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sunstone/public/app/utils/tab-datatable.js
Expand Up @@ -910,6 +910,7 @@ define(function(require) {
$('#selected_ids_row_' + that.dataTableId, section).append(span);
if(that.selectOptions.click && typeof that.selectOptions.click === "function"){
span.attr("title",Locale.tr("just click if you want to delete the resource"));
span.append($("<i/>",{class: "fas fa-times"}).css({"margin-left":"5px"}));
span.off("click").on("click", that.selectOptions.click);
}

Expand Down Expand Up @@ -1101,6 +1102,7 @@ define(function(require) {

if(that.selectOptions.click && typeof that.selectOptions.click === "function"){
span.attr("title",Locale.tr("just click if you want to delete the resource"));
span.append($("<i/>",{class: "fas fa-times"}).css({"margin-left":"5px"}));
span.off("click").on("click", that.selectOptions.click);
}

Expand Down

0 comments on commit 0ae7204

Please sign in to comment.