mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-22 16:02:54 +03:00
Added btn-default class to backend notification button.
This commit is contained in:
parent
2c46042f0e
commit
07f4e45461
1 changed files with 26 additions and 26 deletions
|
@ -114,7 +114,7 @@ var Backend = {
|
||||||
|
|
||||||
$.each(actions, function(index, action) {
|
$.each(actions, function(index, action) {
|
||||||
var actionId = action['label'].toLowerCase().replace(' ', '-');
|
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>';
|
+ action['label'] + '</button>';
|
||||||
|
|
||||||
$(document).off('click', '#' + actionId);
|
$(document).off('click', '#' + actionId);
|
||||||
|
|
Loading…
Reference in a new issue