summaryrefslogtreecommitdiff
path: root/views/music.haml
blob: 1c8852842ee4699a3949d727e33caeb3c23d43d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
:javascript
  function copyURL(u) {
    var tempInput = document.createElement("Input");
    tempInput.style = "position: absolute; left: -1000px; top: -1000px";
    tempInput.value = u;
    document.body.appendChild(tempInput);
    tempInput.select();
    document.execCommand("copy");
    document.body.removeChild(tempInput);
  }

%div.container
  - @ids.each_slice(3) do |ids|
    %div.card-deck
      - ids.each do |id|
        %div.card.mb-4{:id=>id}
          %div.card-header
            %div.btn-group.mr-2{:role=>"group", :aria=>{:label=>"buttons#{id}"}}
              %button.btn.btn-secondary{:type=>"button", :onclick => "copyURL('#{to("/music##{id}")}');", :title => "copy to clipboard"}
                %span.fa.fa-2x.fa-clipboard
          %div.card-body
                  
            %iframe.embed-responsive-item{ :src=>"https://bandcamp.com/EmbeddedPlayer/album=#{id}/size=large/bgcol=ffffff/linkcol=0687f5/artwork=big/tracklist=true/transparent=true/", :style=>"border: 0px; width: auto; height: 522px;"}