Lines Matching refs:className

1013           keybut.className = "keyboardInputInitiator";
1047 … && (ex.className.indexOf("keyboardInput") > -1) || (ex.className.indexOf("wiki__text") > -1))
1073 if (self.VKI_isIE) this.className += " hover";
1077 if (self.VKI_isIE) this.className = this.className.replace(/ ?(hover|pressed) ?/g, "");
1081 if (self.VKI_isIE) this.className += " pressed";
1085 if (self.VKI_isIE) this.className = this.className.replace(/ ?pressed ?/g, "");
1124 li[x].className = "selected";
1126 } else li[x].className = "";
1168 … self.VKI_keyboard.className = self.VKI_keyboard.className.replace(/ ?keyboardInputSize\d ?/, "");
1169 … if (self.VKI_size != 2) self.VKI_keyboard.className += " keyboardInputSize" + self.VKI_size;
1303 this.className += " dead";
1325 if (lyt.length <= this.VKI_keyCenter) table.className = "keyboardInputCenter";
1340 var className = [];
1343 if (key === lkey[0]) { className.push("deadkey"); break; }
1344 if (lyt.length > this.VKI_keyCenter && y == lyt.length) className.push("last");
1345 if (lkey[0] == " " || lkey[1] == " ") className.push("space");
1346 td.className = className.join(" ");
1435 var className = [], lkey = this.VKI_layout[this.VKI_kt].keys[x][y];
1440 if (this.VKI_altgr) className.push("pressed");
1443 if (this.VKI_altgrlock) className.push("pressed");
1446 if (this.VKI_shift) className.push("pressed");
1449 if (this.VKI_shiftlock) className.push("pressed");
1466 var character = tds[y].firstChild.nodeValue || tds[y].firstChild.className;
1468 if (character == this.VKI_dead) className.push("pressed");
1469 if (this.VKI_deadkey[this.VKI_dead][character]) className.push("target");
1471 if (this.VKI_deadkey[character]) className.push("deadkey");
1475 if (y == tds.length - 1 && tds.length > this.VKI_keyCenter) className.push("last");
1476 if (lkey[0] == " " || lkey[1] == " ") className.push("space");
1477 tds[y].className = className.join(" ");