(Grav GitSync) Automatic Commit from RealStickman
This commit is contained in:
parent
85617be871
commit
c762623d3b
Binary file not shown.
@ -179,9 +179,10 @@ jQuery(document).ready(function() {
|
|||||||
var text, clip = new Clipboard('.copy-to-clipboard', {
|
var text, clip = new Clipboard('.copy-to-clipboard', {
|
||||||
text: function(trigger) {
|
text: function(trigger) {
|
||||||
text = $(trigger).prev('code').text();
|
text = $(trigger).prev('code').text();
|
||||||
//NOTE custom stuff to strip # from the beginning of my inline command blocks
|
// NOTE custom stuff to strip # from the beginning of my inline command blocks
|
||||||
text = text.replace(/^[\$\s\#]*/gm, '');
|
return text.replace(/^[\$\s\#]{1,3}/gm, '');
|
||||||
return text.replace(/^\$\s\#\s/gm, '');
|
// original code
|
||||||
|
//return text.replace(/^\$\s/gm, '');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user