Quellcode durchsuchen

Remove race condition waiting for proper event instead of fixed time.

pull/77/head
Lapo Luchini vor 10 Jahren
Ursprung
Commit
259d699551
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. +2
    -2
      pinry/static/js/pin-form.js

+ 2
- 2
pinry/static/js/pin-form.js Datei anzeigen

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



Laden…
Abbrechen
Speichern