<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
<title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
<font face="Helvetica, Arial, sans-serif">The panning and double click
delays in ie seem to have been taken care of with release 0.2.0. Some
problems still exist in firefox (I haven't tested safari yet). The
panning waits until the mouse is released to move. The sliding of the
map when double clicked is not smooth, jumps about second or so until
centered as required.<br>
<br>
ka-map 0.1.1 and > still have a problem in ie and safari when a
non-standard port is used which is releated to how the browsers return
SERVER_HOST variable. In firefox the port is never part of the
SERVER_HOST environment variable. In IE and Safari the port is in both
the SERVER_HOST and SERVER_PORT variables. Fix would be in init.php
starting at line 115.<br>
<br>
< if (isset($_SERVER['SERVER_PORT']) &&
$_SERVER['SERVER_PORT'] != '80')<br>
< $szURL .= ":".$_SERVER['SERVER_PORT'];<br>
---<br>
> if (!strpos($szURL,':')) { // check to make sure port is not
already in SERVER_HOST variable<br>
> if (isset($_SERVER['SERVER_PORT']) &&
$_SERVER['SERVER_PORT'] != '80')<br>
> $szURL .= ":".$_SERVER['SERVER_PORT'];<br>
> }<br>
<br>
Ed<br>
<br>
<br>
<br>
</font>
</body>
</html>