Explorar el Código

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 hace 10 años
padre
commit
c1ea33bae0
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      pinry/static/js/pin-form.js

+ 2
- 2
pinry/static/js/pin-form.js Ver fichero

@@ -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



Cargando…
Cancelar
Guardar