mirror of
https://github.com/emrusz/emrusz.git
synced 2025-04-04 09:23:18 -04:00
Compare commits
5 commits
d51379df1a
...
73bebb8eee
Author | SHA1 | Date | |
---|---|---|---|
73bebb8eee | |||
8448cecf37 | |||
ab284840d9 | |||
28b21bab46 | |||
bb0923e953 |
5 changed files with 5 additions and 52 deletions
10
_config.yml
10
_config.yml
|
@ -19,7 +19,7 @@ description: >- # this means to ignore newlines until "baseurl:"
|
|||
Blog and portfolio for Em (Ethan) Ruszanowski.
|
||||
github_username: emrusz
|
||||
minimal_mistakes_skin: dark
|
||||
search: false
|
||||
search: true
|
||||
|
||||
# Build settings
|
||||
markdown: kramdown
|
||||
|
@ -57,8 +57,9 @@ plugins:
|
|||
|
||||
author:
|
||||
name: "Em (Ethan) Ruszanowski"
|
||||
avatar: "/assets/images/avatar.png"
|
||||
avatar: "/assets/images/avatar.jpg"
|
||||
bio: "Data engineer, polyglot developer, and RIT Computing and Information Technologies alum."
|
||||
location: "Rochester, NY"
|
||||
links:
|
||||
- label: "Email"
|
||||
icon: "fas fa-fw fa-envelope"
|
||||
|
@ -91,9 +92,6 @@ footer:
|
|||
icon: "fas fa-fw fa-heartbeat"
|
||||
url: "https://status.rusz.dev"
|
||||
|
||||
after_footer_scripts:
|
||||
- assets/js/clipboard.js
|
||||
|
||||
social:
|
||||
type:
|
||||
names:
|
||||
|
@ -121,6 +119,8 @@ defaults:
|
|||
layout: single
|
||||
author_profile: true
|
||||
|
||||
enable_copy_code_button: true
|
||||
|
||||
category_archive:
|
||||
type: liquid
|
||||
path: /categories/
|
||||
|
|
0
_drafts/placeholder.md
Normal file
0
_drafts/placeholder.md
Normal file
BIN
assets/images/avatar.jpg
Normal file
BIN
assets/images/avatar.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 772 KiB |
Binary file not shown.
Before Width: | Height: | Size: 3.9 MiB |
|
@ -1,47 +0,0 @@
|
|||
/*
|
||||
* A nice little clipboard script provided by crykn. Thanks!
|
||||
*/
|
||||
|
||||
function sleep(ms) {
|
||||
return new Promise(resolve => setTimeout(resolve, ms));
|
||||
}
|
||||
|
||||
async function onClickEffect(btn, style) {
|
||||
btn.removeClass("btn-light");
|
||||
btn.addClass(style);
|
||||
await sleep(250);
|
||||
btn.removeClass(style);
|
||||
btn.addClass("btn-light");
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
// Create butons
|
||||
$(".page__content pre > code").each(function() {
|
||||
$(this).parent().prepend(
|
||||
$(document.createElement('button')).prop({
|
||||
type: 'button',
|
||||
innerHTML: '<i class="far fa-copy"></i>',
|
||||
})
|
||||
.attr('title', 'Copy to clipboard')
|
||||
.addClass('btn')
|
||||
.addClass('btn--primary')
|
||||
.css('position', 'absolute')
|
||||
.css('right', '1em')
|
||||
// Click listener
|
||||
.on('click', function() {
|
||||
let codeElement = $(this).parent().children('code').first();
|
||||
|
||||
if (!codeElement) {
|
||||
throw new Error("Unexpected error! No corresponding code block was found for this button.");
|
||||
}
|
||||
|
||||
// Blink effect
|
||||
onClickEffect($(this), "btn--success")
|
||||
|
||||
// Copy to clipoard function
|
||||
navigator.clipboard.writeText($(codeElement).text()).then(() => true, () => true);
|
||||
return true;
|
||||
})
|
||||
);
|
||||
});
|
||||
});
|
Loading…
Add table
Reference in a new issue