Merge pull request #1531 from vinyldarkscratch/master
Mobile (iOS) flash dismissal fix
This commit is contained in:
@@ -168,7 +168,8 @@
|
||||
* and require no dom manipulations
|
||||
*/
|
||||
var doc = $(document);
|
||||
doc.on('click', '.w2p_flash', function () {
|
||||
doc.on('click', '.w2p_flash', function (event) {
|
||||
event.preventDefault();
|
||||
var t = $(this);
|
||||
if (t.css('top') == '0px') t.slideUp('slow');
|
||||
else t.fadeOut();
|
||||
|
||||
Reference in New Issue
Block a user