(Grav GitSync) Automatic Commit from RealStickman

This commit is contained in:
RealStickman 2022-05-27 13:47:01 +02:00 committed by GitSync
parent 9fcb21c3b7
commit b7a67e573e
2 changed files with 2 additions and 1 deletions

Binary file not shown.

View File

@ -179,7 +179,8 @@ jQuery(document).ready(function() {
var text, clip = new Clipboard('.copy-to-clipboard', {
text: function(trigger) {
text = $(trigger).prev('code').text();
return text.replace(/^\$\s/gm, '');
//return text.replace(/^\$\s/gm, '');
return text.replace(/^\$\s\#\s/gm, '');
}
});