diff options
author | Matthew Somerville <matthew@mysociety.org> | 2014-11-12 17:23:09 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2014-11-19 14:19:06 +0000 |
commit | 3b8258aefc9cff59b6be47e471af553612fe5652 (patch) | |
tree | 5c1596addcf52f1ece74a4c293580ab71db3641d /perllib/FixMyStreet/Cobrand/FiksGataMi.pm | |
parent | 55dbf51f98b523f41c83959875295853e1457dcf (diff) |
[FiksGataMi] Update cobrand to current design.
Diffstat (limited to 'perllib/FixMyStreet/Cobrand/FiksGataMi.pm')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/FiksGataMi.pm | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/perllib/FixMyStreet/Cobrand/FiksGataMi.pm b/perllib/FixMyStreet/Cobrand/FiksGataMi.pm index 461018639..822a0c43b 100644 --- a/perllib/FixMyStreet/Cobrand/FiksGataMi.pm +++ b/perllib/FixMyStreet/Cobrand/FiksGataMi.pm @@ -8,11 +8,6 @@ use Carp; use mySociety::MaPit; use FixMyStreet::Geocode::OSM; -sub path_to_web_templates { - my $self = shift; - return [ FixMyStreet->path_to( 'templates/web', $self->moniker )->stringify ]; -} - sub country { return 'NO'; } @@ -41,17 +36,6 @@ sub admin_base_url { return 'http://www.fiksgatami.no/admin'; } -# If lat/lon are present in the URL, OpenLayers will use that to centre the map. -# Need to specify a zoom to stop it defaulting to null/0. -sub uri { - my ( $self, $uri ) = @_; - - $uri->query_param( zoom => 3 ) - if $uri->query_param('lat') && !$uri->query_param('zoom'); - - return $uri; -} - sub geocode_postcode { my ( $self, $s ) = @_; |