JSNI で JavaScript 関数を変更していますが、eventlistener が正しく呼び出されません。コードは次のとおりです。
private native void alert1()/*-{
$doc.addEventListener('DOMContentLoaded', function webViewerLoad(evt) {
$wnd.alert("1111111");
}, true);
}-*/;
JavaScript関数は次のとおりです。
document.addEventListener('DOMContentLoaded', function webViewerLoad(evt) {
window.alert("2222222222");
}, true);
助言がありますか?