featuregood first issuehelp wanted
仓库指标
- 星标
- (1,933 个星标)
- PR 合并指标
- (平均合并 19天 11小时) (30 天内合并 49 个 PR)
描述
To create a native Javascript method in GWT a comment must be used:
void native alert(String msg)/*-{
// Javascript code here
$wnd.alert(msg);
}-*/ ;
Spoon generates the resulting code like this
/* -{
// Javascript code here
$wnd.alert(msg);
}- */
void native alert(String msg);
Is there a way to change the position?
Thanks