-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
55 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"small": [ | ||
"askubuntu.com", | ||
"serverfault.com", | ||
"stackexchange.com", | ||
"stackoverflow.com", | ||
"superuser.com" | ||
], | ||
"large": [ | ||
"github.com", | ||
"gist.github.com", | ||
"medium.com", | ||
"www.npmjs.com", | ||
"developer.mozilla.org", | ||
"tableless.com.br", | ||
"laracasts.com", | ||
"docs.rs", | ||
"www.digitalocean.com" | ||
], | ||
"xlarge": [ | ||
"nodejs.org" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,20 @@ | ||
import styles from '../data/styles'; | ||
|
||
export const htmlButton = ` | ||
<button class="codecopy-btn tooltipped tooltipped-s" aria-label="Copy to clipboard"> | ||
<svg height="16" class="codecopy-btn-icon" viewBox="0 0 14 16" version="1.1" width="16" aria-hidden="true"> | ||
<path fill-rule="evenodd" d="M2 13h4v1H2v-1zm5-6H2v1h5V7zm2 3V8l-3 3 3 3v-2h5v-2H9zM4.5 9H2v1h2.5V9zM2 12h2.5v-1H2v1zm9 1h1v2c-.02.28-.11.52-.3.7-.19.18-.42.28-.7.3H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c0-1.11.89-2 2-2 1.11 0 2 .89 2 2h3c.55 0 1 .45 1 1v5h-1V6H1v9h10v-2zM2 5h8c0-.55-.45-1-1-1H8c-.55 0-1-.45-1-1s-.45-1-1-1-1 .45-1 1-.45 1-1 1H3c-.55 0-1 .45-1 1z"></path> | ||
</svg> | ||
</button>`; | ||
|
||
export const isLargeButton = () => { | ||
const sites = /^(github.com|gist.github.com|medium.com|www.npmjs.com|developer.mozilla.org|tableless.com.br|laracasts.com|docs.rs|www.digitalocean.com)$/; | ||
return sites.exec(document.location.hostname); | ||
} | ||
export function getSiteStyle() { | ||
var currentStyle; | ||
|
||
Object.keys(styles).forEach((style) => { | ||
if (styles[style].indexOf(document.location.hostname) !== -1) { | ||
currentStyle = style; | ||
} | ||
}); | ||
|
||
return currentStyle || 'small'; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters