1

Change the look of chess games.

This commit is contained in:
vonavi
2014-04-12 16:21:01 +03:00
parent e308a5099c
commit ee3ba7c3d4
3 changed files with 48 additions and 32 deletions

View File

@@ -1,15 +1,4 @@
$(function() {
/* Fix the position of chess board while scrolling */
if (obj = $('#GameWrapper')) {
obj.affix({
offset: {
top: function () {
return obj.parent().offset().top;
}
}
})
};
/* Sort a tournament table with tablesorter */
$('.tablesorter .opponent').addClass('{sorter: false}');
$('.tablesorter').tablesorter({
@@ -27,6 +16,12 @@ function customFunctionOnPgnGameLoad() {
}
function customFunctionOnMove() {
refreshButtonset();
/* Show move comment */
if (CurrentVar == 0 && (theObj = document.getElementById("GameMoveComment"))) {
theObj.innerHTML = '<span class="comment">' +
strippedMoveComment(CurrentPly, 0, true) + '</span>';
}
}
function refreshButtonset() {
$('#GameButtons input').addClass('btn btn-default');