Avoiding unnecessary repeated checks of navigator.userAgent. The constants added here should not be used outside the library. In the future, they should be removed from the library. r=ahocevar (closes #2911)
git-svn-id: http://svn.openlayers.org/trunk/openlayers@10868 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -206,7 +206,7 @@ OpenLayers.Handler.Box = OpenLayers.Class(OpenLayers.Handler, {
|
||||
"border-top-width")) + parseInt(OpenLayers.Element.getStyle(
|
||||
this.zoomBox, "border-bottom-width")) + 1;
|
||||
// all browsers use the new box model, except IE in quirks mode
|
||||
var newBoxModel = OpenLayers.Util.getBrowserName() == "msie" ?
|
||||
var newBoxModel = OpenLayers.BROWSER_NAME == "msie" ?
|
||||
document.compatMode != "BackCompat" : true;
|
||||
this.boxCharacteristics = {
|
||||
xOffset: xOffset,
|
||||
|
||||
Reference in New Issue
Block a user