0byt3m1n1
Path:
/
var
/
lib
/
vz
/
www
/
clients
/
client6
/
web11
/
web
/
wp-content
/
plugins
/
wp-google-maps
/
js
/
v8
/
[
Home
]
File: popout-panel.js
/** * @namespace WPGMZA * @module PopoutPanel * @requires WPGMZA */ jQuery(function($) { /** * Common functionality for popout panels, which is the directions box, directions result box, and the modern style marker listing * @class WPGMZA.PopoutPanel * @constructor WPGMZA.PopoutPanel * @memberof WPGMZA */ WPGMZA.PopoutPanel = function() { } /** * Opens the direction box * @method * @memberof WPGMZA.PopoutPanel */ WPGMZA.PopoutPanel.prototype.open = function() { $(this.element).addClass("wpgmza-open"); }; /** * Closes the direction box * @method * @memberof WPGMZA.PopoutPanel */ WPGMZA.PopoutPanel.prototype.close = function() { $(this.element).removeClass("wpgmza-open"); }; });