Lines Matching refs:className

1102           keybut.className = "keyboardInputInitiator";
1136 … && (ex.className.indexOf("keyboardInput") > -1) || (ex.className.indexOf("wiki__text") > -1))
1162 if (self.VKI_isIE) this.className += " hover";
1166 if (self.VKI_isIE) this.className = this.className.replace(/ ?(hover|pressed) ?/g, "");
1170 if (self.VKI_isIE) this.className += " pressed";
1174 if (self.VKI_isIE) this.className = this.className.replace(/ ?pressed ?/g, "");
1212 li[x].className = "selected";
1214 } else li[x].className = "";
1255 … self.VKI_keyboard.className = self.VKI_keyboard.className.replace(/ ?keyboardInputSize\d ?/, "");
1256 … if (self.VKI_size != 2) self.VKI_keyboard.className += " keyboardInputSize" + self.VKI_size;
1390 this.className += " dead";
1412 if (lyt.length <= this.VKI_keyCenter) table.className = "keyboardInputCenter";
1427 var className = [];
1430 if (key === lkey[0]) { className.push("deadkey"); break; }
1431 if (lyt.length > this.VKI_keyCenter && y == lyt.length) className.push("last");
1432 if (lkey[0] == " " || lkey[1] == " ") className.push("space");
1433 td.className = className.join(" ");
1522 var className = [], lkey = this.VKI_layout[this.VKI_kt].keys[x][y];
1527 if (this.VKI_altgr) className.push("pressed");
1530 if (this.VKI_altgrlock) className.push("pressed");
1533 if (this.VKI_shift) className.push("pressed");
1536 if (this.VKI_shiftlock) className.push("pressed");
1553 var character = tds[y].firstChild.nodeValue || tds[y].firstChild.className;
1555 if (character == this.VKI_dead) className.push("pressed");
1556 if (this.VKI_deadkey[this.VKI_dead][character]) className.push("target");
1558 if (this.VKI_deadkey[character]) className.push("deadkey");
1562 if (y == tds.length - 1 && tds.length > this.VKI_keyCenter) className.push("last");
1563 if (lkey[0] == " " || lkey[1] == " ") className.push("space");
1564 tds[y].className = className.join(" ");