aboutsummaryrefslogtreecommitdiffstats
path: root/views/index.html.erb
blob: cb5b10381b2c3701e0ecf2c3618ec79d5cb0f432 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div>
    <a href="javascript:(function(){var xhr=new XMLHttpRequest();var params='url='+window.location.href;xhr.open('POST','http://localhost:9292/clips',true);xhr.onreadystatechange=function(){if(this.readyState==4){if(xhr.status==200){if(xhr.responseText.success){}}}};xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');xhr.send(params);})()" onclick="alert('Drag this link onto your browser bookmarks bar.'); return false;">Clips</a>
</div>

<% unless @clips.empty? %>
    <ul>
        <% @clips.each do |c| %>
            <li><%= c.url %></li>
        <% end %>
    </ul>
<% else %>
    No clips to display
<% end %>