summaryrefslogtreecommitdiff
path: root/static/js/show.js
blob: 333ce1712e4a45203d0586560df0fe69708e5f66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
$(document).ready(function(){
        
        $(".detail > .heading").click(function() {
                $(this).prevAll(".mark:last").click();
        });

        $(".detail > .mark").toggle(
            function() {
                this.src = this.src.replace("closed", "open");
                $(this).nextAll(".details:first").toggle();
            },
            function() {
                this.src = this.src.replace("open", "closed");
                $(this).nextAll(".details:first").toggle();
        });

        $(".details").hide();
})
.git/commit/src/password-store.sh?id=b28849617fb61e87a40a0e06ed94e0cd3c87bb5e&follow=1'>extensions: make opt-inJason A. Donenfeld2-15/+22 2016-12-21Add signaturesJason A. Donenfeld2-0/+31 2016-12-20Add extensionsJason A. Donenfeld2-3/+27 2016-12-20generate: use /dev/urandom directlyJason A. Donenfeld4-14/+28 Passing to tr using the "pick and discard" technique is more straight- forwardly correct and less error-prone. It also allows users to select their own character sets to be passed to tr. 2016-02-07dmenu: read likes -rJason A. Donenfeld1-1/+1 2016-02-06zsh-completion: add prefix zstyleBenjamin Richter1-1/+11 This option can be used to select a different pass repository for completion. A configuration example is given inside the completion file. 2016-02-06Make gpg errors fatalJason A. Donenfeld1-5/+5 2016-02-06Moved to webpageJason A. Donenfeld1-7/+0