Skip to content

Commit

Permalink
Fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
buehner committed Jan 10, 2017
1 parent 5b85179 commit fb9ed58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/component/OverviewMap.js
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ Ext.define('GeoExt.component.OverviewMap', {
disableBoxUpdate: function() {
var me = this;
var parentMap = me.getParentMap();
if(parentMap) {
if (parentMap) {
parentMap.un('postrender', me.updateBox, me);
}
},
Expand All @@ -438,7 +438,7 @@ Ext.define('GeoExt.component.OverviewMap', {
enableBoxUpdate: function() {
var me = this;
var parentMap = me.getParentMap();
if(parentMap) {
if (parentMap) {
parentMap.on('postrender', me.updateBox, me);
}
},
Expand Down

0 comments on commit fb9ed58

Please sign in to comment.