Added btn-default class to backend notification button.

This commit is contained in:
Alex Tselegidis 2015-10-11 22:13:36 +02:00
parent 2c46042f0e
commit 07f4e45461
1 changed files with 26 additions and 26 deletions

View File

@ -114,7 +114,7 @@ var Backend = {
$.each(actions, function(index, action) {
var actionId = action['label'].toLowerCase().replace(' ', '-');
notificationHtml += '<button id="' + actionId + '" class="btn btn-xs">'
notificationHtml += '<button id="' + actionId + '" class="btn btn-default btn-xs">'
+ action['label'] + '</button>';
$(document).off('click', '#' + actionId);