/**
* @namespace WPGMZA
* @module OLModernStoreLocator
* @requires WPGMZA.ModernStoreLocator
*/
(function($) {
WPGMZA.OLModernStoreLocator = function(map_id)
{
var element;
WPGMZA.ModernStoreLocator.call(this, map_id);
if(WPGMZA.isProVersion())
element = $(".wpgmza_map[data-map-id='" + map_id + "']");
else
element = $("#wpgmza_map");
element.append(this.element);
}
WPGMZA.OLModernStoreLocator.prototype = Object.create(WPGMZA.ModernStoreLocator);
WPGMZA.OLModernStoreLocator.prototype.constructor = WPGMZA.OLModernStoreLocator;
})(jQuery);