OpenLayers OpenLayers

Ticket #581: iconDestroy.2.patch

File iconDestroy.2.patch, 466 bytes (added by euzuro, 2 years ago)

destroy icon correctly

  • lib/OpenLayers/Icon.js

    old new  
    5252    }, 
    5353     
    5454    destroy: function() { 
    55         OpenLayers.Event.stopObserving(this.imageDiv.firstChild); 
     55        OpenLayers.Event.stopObservingElement(this.imageDiv.firstChild); 
    5656        this.imageDiv.innerHTML = ""; 
    5757        this.imageDiv = null; 
    5858    },