aboutsummaryrefslogtreecommitdiff
path: root/static/js/footerscript.js
blob: bd36daa1940b0a795ad0050d22eb970852a2e101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
var imgs = document.querySelectorAll('#img');
var imgArray = [].slice.call(imgs);

imgArray.forEach(function(img, i){
    img.addEventListener("click", function(e){
        if(img.getAttribute("enlarge") == "0")
        {
            var attachment = img.getAttribute("attachment")
            img.setAttribute("enlarge", "1");
            img.setAttribute("style", "float: left; margin-right: 10px; cursor: move;");
            img.src = attachment
        }
        else
        {
            var preview = img.getAttribute("preview")
            img.setAttribute("enlarge", "0");
            if(img.getAttribute("main") == 1)
            {
                img.setAttribute("style", "float: left; margin-right: 10px; max-width: 250px; max-height: 250px; cursor: move;");
                img.src = preview
            }
            else
            {
                img.setAttribute("style", "float: left; margin-right: 10px; max-width: 125px; max-height: 125px; cursor: move;");
                img.src = preview                
            }
        }
    });
})


function viewLink(board, actor) {
    var posts = document.querySelectorAll('#view');
    var postsArray = [].slice.call(posts);

    postsArray.forEach(function(p, i){
        var id = p.getAttribute("post")
        p.href = "/" + board + "/" + shortURL(actor, id)
    })  
}