소스 검색

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



불러오는 중...
취소
저장