Skip to content

Commit

Permalink
Merge branch 'dev' into dev-recurring-invoices
Browse files Browse the repository at this point in the history
  • Loading branch information
emaijala committed Dec 13, 2024
2 parents c70ebe9 + 8aa612f commit 1c29a3c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions js/mlinvoice.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ var MLInvoice = (function CreateMLInvoice() {
if (typeof colorClasses !== 'undefined') {
$toast.addClass(colorClasses);
} else {
$toast.addClass('text-white bg-success');
$toast.addClass('text-success-emphasis bg-success-subtle');
}
var $flex = $('<div class="d-flex">')
.appendTo($toast);
Expand Down Expand Up @@ -334,12 +334,12 @@ var MLInvoice = (function CreateMLInvoice() {

function errormsg(msg, timeout)
{
infomsg(msg, timeout, 'text-white bg-danger');
infomsg(msg, timeout, 'text-danger-emphasis bg-danger-subtle');
}

function warningmsg(msg, timeout)
{
infomsg(msg, timeout, 'bg-warning');
infomsg(msg, timeout, 'text-warning-emphasis bg-warning-subtle');
}

function clearMessages()
Expand Down
4 changes: 2 additions & 2 deletions js/mlinvoice.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/mlinvoice.min.js.map

Large diffs are not rendered by default.

0 comments on commit 1c29a3c

Please sign in to comment.