Label box fly out
|
|
is there anyway to disable the fly out of the label box? like a switch for the admin label (LL4G -pilot -noflyout) |
|
|
Not currently. But if it is causing you a problem, I could fix it. |
|
|
i found a hack around it. i changed the line... labelDiv.addEventListener("mouseover", function(e){if(labelDiv.clientHeight < 30) return; labelDiv.style.width = '350px';labelDiv.style.position = 'relative';labelDiv.style.zIndex = '100';}, false); to labelDiv.addEventListener("mouseover", function(e){return; labelDiv.style.width = '350px';labelDiv.style.position = 'relative';labelDiv.style.zIndex = '100';}, false); i suck at javascript so im sure there would be a better way of doing it, but that seemed to have worked. btw, love the script. |