Merge branch 'master' of github.com:capilkey/bigbluebutton

This commit is contained in:
jtrobinson 2012-07-23 14:50:06 +00:00
commit 6ef05eeb60
3 changed files with 12 additions and 0 deletions

View File

@ -17,6 +17,12 @@
<script src="lib/bbb_localization.js" language="javascript"></script>
<script src="lib/bbb_blinker.js" language="javascript"></script>
<script src="lib/bbb_deskshare.js" language="javascript"></script>
<script type="text/javascript">
$(function() {
document.getElementById("${BigBlueButton}").focus();
});
</script>
</head>
<body>
<div id="content">

View File

@ -10,6 +10,12 @@ package org.bigbluebutton.common.model
public function FocusableImage()
{
super();
focusEnabled = true;
hasFocusableChildren = true;
mouseFocusEnabled = true;
tabFocusEnabled = true;
tabIndex = -1
}
}
}