summaryrefslogtreecommitdiffstats
path: root/htdocs/js/main.js
blob: b96513b9baef36a4b01aa208d4c214738af7f958 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// brand letters' rotation
function rotate(letter) {
    return String.fromCharCode(
        letter.charCodeAt(0) + (letter.toLowerCase() <= 'm' ? 13 : -13)
    );
}

$(".header .brand .letter").hover(function () {
    $(this).text(rotate($(this).text()));
});