From 31b3987f2dcc301b4923835c1b29d9a2732fc2ea Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Mon, 12 Jan 2015 18:12:45 +0000 Subject: [PATCH] Fix selectboxes in Firefox, they did not drop down --- home/js/app.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/js/app.js b/home/js/app.js index 2647306573..ccb190e694 100644 --- a/home/js/app.js +++ b/home/js/app.js @@ -432,6 +432,10 @@ app.classes.home = AppJS.extend( }); + // Rescue selectboxes from Firefox + $portlet_container.on('mousedown touchstart', 'select', function(e) { + e.stopPropagation(); + }); // Bind window resize to re-layout gridster $j(window).one("resize."+this.et2._inst.uniqueId, function() { // Note this doesn't change the positions, just makes them invalid