This website works better with JavaScript.
Home
Help
Sign In
heuzef
/
pinry
mirror of
https://github.com/pinry/pinry.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
44
Wiki
Activity
Browse Source
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 years ago
parent
355084daeb
259d699551
commit
c1ea33bae0
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
pinry/static/js/pin-form.js
+ 2
- 2
pinry/static/js/pin-form.js
View File
@@ -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
Write
Preview
Loading…
Cancel
Save