modal:false floatbox is blokcing space bar

Page: 1

Author Post
Member
Registered: Oct 2012
Posts: 2
This simple code shows what I means:

<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="floatbox.css" />
<script type="text/javascript" src="floatbox.js"></script>
</head>
<body>
<form>
<input type="text" />
</form>
<a href="http://php.gamemods.com.br/files/profile/img/guest.png" class="floatbox" data-fb-options="modal:false ">
<img src="http://php.gamemods.com.br/files/profile/img/guest.png" alt="" /></a>
</body>
</html>


When you click in the image you can type in the text field but if you try to add a space it will do nothing until you close the floatbox...

How can I fix it? :/
Administrator
Registered: Aug 2008
Posts: 3382
Set enableKeyboardNav:false to prevent the floatbox from consuming keystrokes.
Member
Registered: Oct 2012
Posts: 2
Thank you for your quick answer :D

It worked :D

Page: 1