(Grav GitSync) Automatic Commit from RealStickman

This commit is contained in:
RealStickman 2022-05-27 14:09:10 +02:00 committed by GitSync
parent 03c27c343f
commit 54f8a00766
2 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -178,10 +178,10 @@ jQuery(document).ready(function() {
if (!clipInit) {
var text, clip = new Clipboard('.copy-to-clipboard', {
text: function(trigger) {
text = $(trigger).prev('code').text();
// NOTE custom stuff to strip # or $ from the beginning of my inline command blocks
text = $(trigger).prev('code').text
// NOTE custom stuff to strip # or $ from the beginning of my inline command blocks
return text.replace(/^[\$\s\#\$]{1,3}/gm, '');
// original code
// original code
//return text.replace(/^\$\s/gm, '');
}
});