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