From b79a6e1b33aa47a93b45200997fd4514a887ea40 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Fri, 23 Jan 2015 10:29:54 -0500
Subject: [PATCH] Workaround Firefox 3.6 issue where "advanced options" toggle element was misplaced

---
 skins/larry/ui.js |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/skins/larry/ui.js b/skins/larry/ui.js
index fb7ca31..c07ec99 100644
--- a/skins/larry/ui.js
+++ b/skins/larry/ui.js
@@ -290,6 +290,8 @@
               .toggleClass('collapsed')
               .closest('fieldset').children('.propform').toggle()
           }).addClass('collapsed')
+          // this magically fixes incorrect position of toggle link created above in Firefox 3.6
+          .parents('form').css('display', 'inline');
       }
     }
     /***  addressbook task  ***/

--
Gitblit v1.9.1