Files
postgres-web/media/js/apt.js
Dave Page b0c19acf47 Download pages overhaul:
- 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.
2020-07-07 16:52:25 +01:00

8 lines
240 B
JavaScript

/* Event handlers */
function setupHandlers() {
document.getElementById('copy-btn').addEventListener('click', function () {
copyScript(this, 'script-box');
});
}
document.addEventListener("DOMContentLoaded", setupHandlers);