Changeset 1831

Show
Ignore:
Timestamp:
10/31/08 18:03:07 (2 months ago)
Author:
tcoulter
Message:

Fixed I cursor in IE 7. Setting things to other cursors may be problematic, but this is a quick fix for now.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • client/trunk/lib/Almanac/Map.js

    r1768 r1831  
    9393            this.events.register("moveend", this, preventZoomOutTooFar); 
    9494        } 
     95 
     96        this.events.register("moveend", this, function() { 
     97            var elem = document.getElementById(id); 
     98            elem.style.cursor = "default"; 
     99        }); 
    95100    }, 
    96101