From 50ea534cecacd642b534424d8a5e0d69499c8173 Mon Sep 17 00:00:00 2001 From: euzuro Date: Sun, 21 May 2006 13:39:06 +0000 Subject: [PATCH] add OpenLayers.Popup and a directory Popup, in which we will put all custom popups. git-svn-id: http://svn.openlayers.org/trunk/openlayers@220 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Popup.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lib/OpenLayers/Popup.js diff --git a/lib/OpenLayers/Popup.js b/lib/OpenLayers/Popup.js new file mode 100644 index 0000000000..821c2f0f4f --- /dev/null +++ b/lib/OpenLayers/Popup.js @@ -0,0 +1,20 @@ +/** +* @class +*/ +OpenLayers.Popup = Class.create(); +OpenLayers.Popup.prototype = { + + + + /** + * @constructor + */ + initialize:function() { + + }, + + + + + CLASS_NAME: "OpenLayers.Popup" +}; \ No newline at end of file