Changeset 127
- Timestamp:
- 08/30/11 11:14:04
- Files:
-
- mapping/trunk/interactivemap/lib/olMap1.1.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
mapping/trunk/interactivemap/lib/olMap1.1.js
r126 r127 1699 1699 The cursor has to stop over the feature for the Timeout value before we make the call.*/ 1700 1700 thisObj = this; 1701 setTimeout(function() 1701 //DWR 2011/30/8 1702 //Actually assign the hoverTimeout value so we can properly kill the timer. 1703 this.hoverTimeout = setTimeout(function() 1702 1704 { 1703 1705 thisObj.hoverData(thisObj, event) … … 1889 1891 //var url = OpenLayers.ProxyHost + dataUrl + feature.attributes.staDataFile; 1890 1892 var url = dataUrl + feature.attributes.staDataFile; 1893 1891 1894 Ext.Ajax.request({ 1892 1895 autoAbort: true, … … 1978 1981 clearPopup : function() 1979 1982 { 1983 if(this.hoverTimeout !== undefined) 1984 { 1985 clearTimeout(this.hoverTimeout); 1986 this.hoverTimeout = undefined; 1987 } 1980 1988 if(this.toolTip !== undefined) 1981 1989 {
