gdritter repos lib-static / master static / quotes.js
master

Tree @master (Download .tar.gz)

quotes.js @masterraw · history · blame

function doHighlight(ident) {
    $('.quote').css('backgroundColor', '#070707');
    $('.link').css('backgroundColor', '#070707');
    $("#"+ident).css("backgroundColor", "#171717");
}

function doLoadHighlight() {
    if (window.location.hash)
        doHighlight(window.location.hash.slice(1));
}