aboutsummaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/cobrands/fixmystreet/fixmystreet.js15
-rw-r--r--web/cobrands/fixmystreet/layout.scss9
-rw-r--r--web/js/map-OpenLayers.js4
3 files changed, 2 insertions, 26 deletions
diff --git a/web/cobrands/fixmystreet/fixmystreet.js b/web/cobrands/fixmystreet/fixmystreet.js
index 4e7315017..fdecee9db 100644
--- a/web/cobrands/fixmystreet/fixmystreet.js
+++ b/web/cobrands/fixmystreet/fixmystreet.js
@@ -46,17 +46,6 @@ function tabs(elem, indirect) {
//hide / show the right tab
$('.tab.open').hide().removeClass('open');
$(target).show().addClass('open');
-
- // Clicking on tabs to show/hide pins, content experiment
- if (typeof(variation) !== 'undefined' && variation == 1) {
- if (target == '#current_near_tab' && !fixmystreet.markers.getVisibility()) {
- $('#hide_pins_link').click();
- }
- if (target == '#reporting' && fixmystreet.markers.getVisibility()) {
- $('#hide_pins_link').click();
- }
- }
-
}
}
@@ -187,8 +176,8 @@ $(function(){
* Tabs
*/
//make initial tab active
- $('.tab-nav a:visible').first().addClass('active');
- $('.tab:visible').first().addClass('open');
+ $('.tab-nav a').first().addClass('active');
+ $('.tab').first().addClass('open');
//hide other tabs
$('.tab').not('.open').hide();
diff --git a/web/cobrands/fixmystreet/layout.scss b/web/cobrands/fixmystreet/layout.scss
index 21de4f271..ded1ed911 100644
--- a/web/cobrands/fixmystreet/layout.scss
+++ b/web/cobrands/fixmystreet/layout.scss
@@ -92,15 +92,6 @@ body.mappage {
@include background(linear-gradient(#000, #222 10%, #222 90%, #000));
}
}
-
- #reporting {
- padding: 1em;
- text-align: center;
-
- h1 {
- line-height: 1.2em;
- }
- }
}
#main-nav {
diff --git a/web/js/map-OpenLayers.js b/web/js/map-OpenLayers.js
index 63625efb8..c7bfef2b0 100644
--- a/web/js/map-OpenLayers.js
+++ b/web/js/map-OpenLayers.js
@@ -227,10 +227,6 @@ function fixmystreet_onload() {
}
});
- if (fixmystreet.initial_hide_pins) {
- $('#hide_pins_link').click();
- }
-
$('#all_pins_link').click(function(e) {
e.preventDefault();
fixmystreet.markers.setVisibility(true);