Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/views/pages/admin-paid.ejs

    r0475b13 r9a00f28  
    7272</div>
    7373
    74 <%# Het script van deze pagina staat in assets/js/mod/admin-paid.js (shaer-bqr). %>
     74<script>
     75(function () {
     76  var field = document.getElementById('pd-redirect');
     77  var btn = document.getElementById('pd-copy');
     78  if (!field || !btn) return;
     79  field.addEventListener('focus', function () { field.select(); });
     80  btn.addEventListener('click', function () {
     81    field.select();
     82    var done = function () { var t = btn.textContent; btn.textContent = document.getElementById('pd-copy').getAttribute('data-copied'); setTimeout(function () { btn.textContent = t; }, 1400); };
     83    if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(field.value).then(done, function () { try { document.execCommand('copy'); done(); } catch (e) {} }); }
     84    else { try { document.execCommand('copy'); done(); } catch (e) {} }
     85  });
     86})();
     87</script>
Note: See TracChangeset for help on using the changeset viewer.