summaryrefslogtreecommitdiff
path: root/views/js_link.haml
blob: 7d8cdce2096824cc879800746d0df8f4da0325c6 (plain)
1
2
3
4
5
%a{:href => "#{destination}", :id => "js_link#{@link_id}"} #{name}
:javascript
  $("a#js_link#{@link_id}").click(function () {
    $("#{destination}").#{method}();  
  });