Bläddra i källkod

Merge pull request #77 from lapo-luchini/fix_modal

Remove race condition waiting for proper event instead of fixed time
pull/82/head
Isaac Bythewood 10 år sedan
förälder
incheckning
c1ea33bae0
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. +2
    -2
      pinry/static/js/pin-form.js

+ 2
- 2
pinry/static/js/pin-form.js Visa fil

@@ -48,9 +48,9 @@ $(window).load(function() {

function dismissModal(modal) {
modal.modal('hide');
setTimeout(function() {
modal.on('hidden.bs.modal', function() {
modal.remove();
}, 200);
});
}
// End Helper Functions



Laddar…
Avbryt
Spara