summaryrefslogtreecommitdiff
path: root/individual.php
diff options
context:
space:
mode:
authorDavid Drury <david@drury.me.uk>2014-08-22 11:10:12 +0100
committerDavid Drury <david@drury.me.uk>2014-08-25 11:38:34 +0100
commit840500c21d61484453469fee86e193340909ee94 (patch)
treee5b74904884a7e90efa7da3e5ccbe1a506a91dd0 /individual.php
parent81e4f775f97daf031ba86be308b77ceb3ddcf939 (diff)
downloadwebtrees-840500c21d61484453469fee86e193340909ee94.tar.gz
webtrees-840500c21d61484453469fee86e193340909ee94.tar.bz2
webtrees-840500c21d61484453469fee86e193340909ee94.zip
Fix display corruption on IE
Remove javascript added in #223 which is unnecessary Damn, the javascript I just removed *IS required by firefox Overflow hidden was added to #main on pull #191, this change makes that redundant, also fixed minor CSS problem on clouds theme that was introduced with this change and removed redundant css on FAB and minimal themes
Diffstat (limited to 'individual.php')
-rw-r--r--individual.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/individual.php b/individual.php
index 89e8039120..ed9a678df9 100644
--- a/individual.php
+++ b/individual.php
@@ -108,7 +108,7 @@ var WT_INDIVIDUAL = (function () {
jQuery ("#tabs").tabs ({
// If url has a hash (e.g #stories) then don\'t set an active tab - it overrides the hash
// otherwise use cookie
- active: document.location.hash ? null : jQuery.cookie ("indi-tab"),
+ active: location.hash ? null : jQuery.cookie ("indi-tab"),
activate: function (event, ui) {
jQuery.cookie ("indi-tab", jQuery ("#tabs").tabs ("option", "active"));
},