fixed notation to be lowercase

This commit is contained in:
mig 2017-04-27 13:44:34 +02:00
parent f3acbaf044
commit be5f60f2dd

View file

@ -162,8 +162,8 @@
Model.Move.ToString=function() {
if(this.pass)
return "PASS";
return "ABCDEFGH".charAt(this.col)+(this.row+1);
return "-";
return String.fromCharCode("a".charCodeAt(0)+this.col)+(this.row+1);
}
Model.Move.Equals=function(move) {