|
|
@@ -64,10 +64,10 @@ function Fill(data) {
|
|
|
if ($(Iitem).attr("ulflag") == undefined) {
|
|
|
$(Iitem).attr("ulflag", "0");
|
|
|
}
|
|
|
- else if ($(Iitem).attr("shcode") == undefined) {
|
|
|
+ if ($(Iitem).attr("shcode") == undefined) {
|
|
|
$(Iitem).attr("shcode", 1);
|
|
|
}
|
|
|
- else if ($(Iitem).attr("showflag") == undefined) {
|
|
|
+ if ($(Iitem).attr("showflag") == undefined) {
|
|
|
$(Iitem).attr("showflag", "1");
|
|
|
}
|
|
|
if (ClsName != undefined && ClsName.indexOf("underlineContent") > -1) {
|
|
|
@@ -76,19 +76,16 @@ function Fill(data) {
|
|
|
if ($(element).attr("ulflag") == undefined) {
|
|
|
$(element).attr("ulflag", "1");
|
|
|
}
|
|
|
- else if ($(element).attr("shcode") == undefined) {
|
|
|
+ if ($(element).attr("shcode") == undefined) {
|
|
|
$(element).attr("shcode", 1);
|
|
|
}
|
|
|
- else if ($(element).attr("showflag") == undefined) {
|
|
|
+ if ($(element).attr("showflag") == undefined) {
|
|
|
$(element).attr("showflag", "1");
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
});
|
|
|
if (typeof (showGLWorld) == "function") {
|
|
|
- //window.setTimeout(function () {
|
|
|
- // showGLWorld(wordFlag, phraseFlag, sentenceFlag);
|
|
|
- //}, 20);
|
|
|
showGLWorld(wordFlag, phraseFlag, sentenceFlag);
|
|
|
}
|
|
|
}
|