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:
Shreyansh Panchal 2018-08-08 00:03:01 +05:30 committed by GitHub
parent 62beb11051
commit 34d5ed3172
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -272,7 +272,7 @@
});
$('a[rel=popover]').popover({
html: 'true',
html: true,
placement: 'bottom',
title: '{{ trans('invoices.discount') }}',
content: function () {