blob: 351c34ad191b820fe425569a81bc722ab887f5a6 (
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','<%= @env['REQUEST_URI'] %>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 %>
|