BusyIndicator を表示しようとしていますが、プロジェクトを実行しても表示されません。これは私のmain.jsです:
var busyInd;
function wlCommonInit() {
busyInd = new WL.BusyIndicator('content', {text : 'Loading...'});
mostraDialogo(true);
}
function mostraDialogo(on) {
if (on)
busyInd.show();
else
busyInd.hide();
}
どうしたの?