diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-05-02 16:58:26 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-05-02 16:58:26 +0100 |
commit | a7c433877564d95bdb3698c3b8bb85d03e01feb7 (patch) | |
tree | 32d2420e36d245e83efef8fe2ea1b44ecc41db05 | |
parent | beb06981bbddf1113688532d80a83e181d52d762 (diff) |
Bromley have changed their mind, want all pins one colour again.
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Bromley.pm | 2 | ||||
-rwxr-xr-x | templates/web/bromley/around/display_location.html | 2 | ||||
-rw-r--r-- | web/cobrands/fixmystreet/fixmystreet.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Bromley.pm b/perllib/FixMyStreet/Cobrand/Bromley.pm index acdefb41e..02c4676f9 100644 --- a/perllib/FixMyStreet/Cobrand/Bromley.pm +++ b/perllib/FixMyStreet/Cobrand/Bromley.pm @@ -44,7 +44,7 @@ sub recent_photos { sub pin_colour { my ( $self, $p ) = @_; - return 'green' if time() - $p->confirmed_local->epoch < 7 * 24 * 60 * 60; + #return 'green' if time() - $p->confirmed_local->epoch < 7 * 24 * 60 * 60; return 'yellow'; } diff --git a/templates/web/bromley/around/display_location.html b/templates/web/bromley/around/display_location.html index d2726e035..b961ef4c6 100755 --- a/templates/web/bromley/around/display_location.html +++ b/templates/web/bromley/around/display_location.html @@ -70,7 +70,7 @@ <div id="side"> <h1 class="big-green-banner">[% loc( 'Click map to report a problem' ) %] - <span>Pins show existing reports</span></h1> + <span>Yellow pins show existing reports</span></h1> <p id="skip-this-step"> [% diff --git a/web/cobrands/fixmystreet/fixmystreet.js b/web/cobrands/fixmystreet/fixmystreet.js index f65d8083a..b674020b1 100644 --- a/web/cobrands/fixmystreet/fixmystreet.js +++ b/web/cobrands/fixmystreet/fixmystreet.js @@ -143,7 +143,7 @@ $(function(){ // Remove full-screen-ness var banner_text; if (cobrand == 'bromley') { - banner_text = 'Click map to report a problem<span>Pins show existing reports</span>'; + banner_text = 'Click map to report a problem<span>Yellow pins show existing reports</span>'; } else { $('#site-header').show(); banner_text = 'Click map to report a problem'; |