Revert "Fixing the extend method to work on IE."
This reverts commit 71276b5323.
This commit is contained in:
@@ -91,7 +91,7 @@ OpenLayers.Util.extend = function(destination, source) {
|
||||
destination = destination || {};
|
||||
if (source) {
|
||||
for (var property in source) {
|
||||
if (Object.prototype.hasOwnProperty.call(source, property)) {
|
||||
if (source.hasOwnProperty(property)) {
|
||||
var value = source[property];
|
||||
if (value !== undefined) {
|
||||
destination[property] = value;
|
||||
|
||||
Reference in New Issue
Block a user