Minor style change on Layer.Boxes, #634.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@3025 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
crschmidt
2007-04-06 03:28:06 +00:00
parent 098ed43cf6
commit cf94dbeb01

View File

@@ -15,8 +15,11 @@ OpenLayers.Layer.Boxes.prototype =
/**
* @constructor
*
* @param {String} name
* @param {Object} options Hashtable of extra options to tag onto the layer
*/
initialize: function () {
initialize: function (name, options) {
OpenLayers.Layer.Markers.prototype.initialize.apply(this, arguments);
},