From 9a66edd50a647128c4e1ce19e6b81c77268239c8 Mon Sep 17 00:00:00 2001 From: ptolp Date: Tue, 19 Feb 2013 14:26:14 +0200 Subject: [PATCH] Fix for WP7.5 bug where clicks go through the overlay MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See http://stackoverflow.com/questions/8641313/how-can-prevent-the-click-on-elements-which-under-the-transparent-overlay-div-in --- guiders.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guiders.js b/guiders.js index 79740fc..05e395b 100644 --- a/guiders.js +++ b/guiders.js @@ -271,7 +271,7 @@ var guiders = (function($) { guiders._initializeOverlay = function() { if ($("#guiders_overlay").length === 0) { - $("
").hide().appendTo("body"); + $("
").hide().appendTo("body"); } };