mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
bb751793c8
* Copy to clipboard fix * Improve invoice status change wording and JS * Re-add ability to delete apps Now that the list view is gone, we need to move this option to the edit view * Clean up app and payment request bundles * Fix for invoice status change when dismissed
15 lines
425 B
JavaScript
15 lines
425 B
JavaScript
(function() {
|
|
window.summernoteOptions = function() {
|
|
return {
|
|
minHeight: 300,
|
|
tableClassName: 'table table-sm',
|
|
insertTableMaxSize: {
|
|
col: 5,
|
|
row: 10
|
|
},
|
|
codeviewFilter: true,
|
|
codeviewFilterRegex: new RegExp($.summernote.options.codeviewFilterRegex.source + '|<.*?( on\\w+?=.*?)>', 'gi')
|
|
}
|
|
}
|
|
})()
|