mirror of
https://github.com/iSharkFly-Docs/opensearch-docs-cn
synced 2025-02-11 00:44:45 +00:00
5 lines
197 B
JavaScript
5 lines
197 B
JavaScript
|
const contributeButton = document.getElementById('contribute');
|
||
|
|
||
|
contributeButton.addEventListener('click', function(event) {
|
||
|
window.open('https://github.com/opensearch-project', '_blank');
|
||
|
});
|