A flat-file CMS written in Python and Flask
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. );