mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-10 00:42:06 +00:00

- Don't use inline event handlers - Simplify some of the wording - Replace the package download list with nice buttons Design by me & Jonathan, code by me, review by Jonathan and others.
8 lines
240 B
JavaScript
8 lines
240 B
JavaScript
/* Event handlers */
|
|
function setupHandlers() {
|
|
document.getElementById('copy-btn').addEventListener('click', function () {
|
|
copyScript(this, 'script-box');
|
|
});
|
|
}
|
|
|
|
document.addEventListener("DOMContentLoaded", setupHandlers); |