ソースを参照

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年前
コミット
c1ea33bae0
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      pinry/static/js/pin-form.js

+ 2
- 2
pinry/static/js/pin-form.js ファイルの表示

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



読み込み中…
キャンセル
保存