Changeset 2861
- Timestamp:
- 03/22/07 16:39:16 (2 years ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/BaseTypes.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/BaseTypes.js
r2860 r2861 24 24 } 25 25 OpenLayers.Util.extend(proto, arguments[i]); 26 27 // This is a hack for IE see 28 // http://trac.openlayers.org/attachment/ticket/552 29 // 30 // The problem is that ie doesnt recognize toString as a property 31 // so the util.extend() doesnt copy it over. we do it manually. 32 // 33 // to be revisited in 3.0 34 // 35 if (arguments[i].toString) { 36 proto.toString = arguments[i].toString; 37 } 26 38 } 27 39 return proto;
