diff options
-rw-r--r-- | gmap_arcgis.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gmap_arcgis.js b/gmap_arcgis.js index f315b27..f5783d3 100644 --- a/gmap_arcgis.js +++ b/gmap_arcgis.js @@ -48,6 +48,10 @@ function gmapArcgis(config) { // Block the UI and show an overlay showOverlay: function(t) { + if (this.config.disableOverlay != undefined && this.config.disableOverlay == true) { + return; + } + if ($.browser.msie === false || $.browser.msie === undefined) { message = this.config.overlayMessage; |