Skip to content

Commit

Permalink
Updated map image for 2013
Browse files Browse the repository at this point in the history
  • Loading branch information
DiGatsby committed Jul 31, 2013
1 parent bc173a7 commit 2d21ae6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/map.js
Expand Up @@ -41,7 +41,7 @@ $(function () {


function Map() {
this.paper = Raphael('map', 716, 673);
this.paper = Raphael('map', 720, 673);
this.map = undefined;
this.selection = new Selection();
this.config = {};
Expand All @@ -56,7 +56,7 @@ Map.prototype.loadData = function (file, cb) {
map.groups = data.groups;
map.tables = data.tables;
map.config = data.config;
this.map = map.paper.image(map.config.map, 0, 0, 716, 673);
this.map = map.paper.image(map.config.map, 0, 0, 720, 673);
cb();
}).fail(function () { console.error('Failed to load map data.'); });
};
Expand Down

0 comments on commit 2d21ae6

Please sign in to comment.