diff options
| author | Code WvS <code-wvs@quantentunnel.de> | 2015-03-01 15:57:28 +0100 |
|---|---|---|
| committer | Code WvS <code-wvs@quantentunnel.de> | 2015-03-01 15:57:28 +0100 |
| commit | 5b615ebf5cfc4f6aa6c5930dcc7ec7e211e883df (patch) | |
| tree | b2283ff24c0d6f53bcacc489e9a23645efb99ca7 /gui.js | |
| parent | 0722cd0a636d272502a03434dfe91386c0624d82 (diff) | |
| download | snap-yow-5b615ebf5cfc4f6aa6c5930dcc7ec7e211e883df.tar.gz snap-yow-5b615ebf5cfc4f6aa6c5930dcc7ec7e211e883df.zip | |
don't hide the markers on map resize
Diffstat (limited to 'gui.js')
| -rw-r--r-- | gui.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -241,9 +241,6 @@ IDE_Morph.prototype.init = function (isAutoFill) { this.loadNewProject = false; // flag when starting up translated this.shield = null; - // initialize inherited properties: - IDE_Morph.uber.init.call(this); - // Snap! YOW // set initial sprite position after the map has loaded // The map center is set at the same time as 'geoposition' @@ -260,6 +257,9 @@ IDE_Morph.prototype.init = function (isAutoFill) { window.map.getCenter().lat); } + // initialize inherited properties: + IDE_Morph.uber.init.call(this); + // override inherited properites: this.color = this.backgroundColor; }; |
