A flat-file CMS written in Python and Flask
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 225B

12345678
  1. document.querySelector('[data-generate-button]').addEventListener('click',
  2. function (e) {
  3. var r = confirm('Are you sure? This will overwrite any existing content.');
  4. if (!r) {
  5. e.preventDefault();
  6. }
  7. }
  8. );