Update popover function call method signature
Currently on line #275 `$('a[rel=popover]').popover({ html: 'true',` html true where `'true'` is within quotes, Which causes issue when trying to open popover. As popover expects Boolean. As mentioned at: https://github.com/akaunting/akaunting/issues/url
This commit is contained in:
parent
62beb11051
commit
34d5ed3172
@ -272,7 +272,7 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
$('a[rel=popover]').popover({
|
$('a[rel=popover]').popover({
|
||||||
html: 'true',
|
html: true,
|
||||||
placement: 'bottom',
|
placement: 'bottom',
|
||||||
title: '{{ trans('invoices.discount') }}',
|
title: '{{ trans('invoices.discount') }}',
|
||||||
content: function () {
|
content: function () {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user