Browse Source

Add missing @since 7.2.4 in javadoc

Change-Id: I48c37a377d6764333b83512dc613798aaf39423c
tags/7.3.0.beta1
Henri Sara 10 years ago
parent
commit
b258e2b7dd

+ 2
- 0
client/src/com/vaadin/client/ResourceLoader.java View File

@@ -221,6 +221,7 @@ public class ResourceLoader {
* listener to notify when script is loaded
* @param async
* What mode the script.async attribute should be set to
* @since 7.2.4
*/
public void loadScript(final String scriptUrl,
final ResourceLoadListener resourceLoadListener, boolean async) {
@@ -279,6 +280,7 @@ public class ResourceLoader {
* execution order for dynamically-added scripts.
*
* @return Browser supports script.async='false'
* @since 7.2.4
*/
public static boolean supportsInOrderScriptExecution() {
return BrowserInfo.get().isIE()

+ 1
- 0
client/src/com/vaadin/client/Util.java View File

@@ -73,6 +73,7 @@ public class Util {
*
* @param event
* @return return key code
* @since 7.2.4
*/
public static int getKeyCode(KeyEvent<?> event) {
int keyCode = event.getNativeEvent().getKeyCode();

+ 1
- 0
client/src/com/vaadin/client/VTooltip.java View File

@@ -113,6 +113,7 @@ public class VTooltip extends VWindowOverlay {
*
* @param info
* with the content of the tooltip
* @since 7.2.4
*/
public void initializeAssistiveTooltips() {
updatePosition(null, true);

Loading…
Cancel
Save