midifing lines board.js ======== line 309 if (type.indexOf("var:") == 0) { text = type.substring(4); if(this.player.prefs.alphabeticalVariationMark){ //add text=text.charCodeAt(0)+16; //add text=String.fromCharCode(text); //add } //add type = "variation"; } else { text = type; type = "label"; } break; player.js ======== line 312 this.prefs.showMoveNumber = !!cfg.showMoveNumber; this.prefs.alphabeticalVariationMark=!!cfg.alphabeticalVariationMark; //add all.compressed.js ================= line 1009 if(_30.indexOf("var:")==0){ _32=_30.substring(4); if(this.player.prefs.alphabeticalVariationMark){ //add _32=_32.charCodeAt(0)+16; //add _32=String.fromCharCode(_32); //add } //add _30="variation"; }else{ _32=_30; _30="label"; } line 1331 this.prefs.showMoveNumber=!!cfg.showMoveNumber; this.prefs.alphabeticalVariationMark=!!cfg.alphabeticalVariationMark; //add