-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added pygeoweaver command to landing page
- Loading branch information
1 parent
4530d02
commit d3beac1
Showing
7 changed files
with
76 additions
and
4 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,18 @@ | ||
|
||
const installIcon = document.getElementById('copy-install-text'); | ||
|
||
installIcon.addEventListener('click', () => { | ||
"use strict"; | ||
const originalLogoSrc = installIcon.querySelector('img').src; | ||
const tickIcon = installIcon.getAttribute('data-image-url'); | ||
|
||
installIcon.querySelector('img').src = tickIcon; | ||
navigator.clipboard.writeText('pip install pygeoweaver').then(() => { | ||
console.log('Text copied to clipboard'); | ||
}).catch(err => { | ||
console.error('Failed to copy text: ', err); | ||
}); | ||
setTimeout(() => { | ||
installIcon.querySelector('img').src = originalLogoSrc; | ||
}, 3000); | ||
}); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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