fixed cell edit highlight

This commit is contained in:
MaxRobinsonTheGreat
2020-07-22 16:24:49 -06:00
parent 4ac9a3fb67
commit 6d25a0a745
2 changed files with 3 additions and 2 deletions

View File

@@ -50,7 +50,8 @@ class EditorController extends CanvasController{
break;
}
$(".cell-type" ).css( "border-color", "black" );
$("#"+this.id).css("border-color", "yellow");
var selected = '#'+this.id+'.cell-type';
$(selected).css("border-color", "yellow");
});
}
}