Guest User

Untitled

a guest
Feb 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <% last_date = @selected_date %>
  2. <% @notes.each do |note| %>
  3. <div class="note" style="<%= note.pos %> z-index: <%= 100 + note.id %>;" id="note_<%= note.id %>" onmouseover="Element.toggle('edit_note_icon_<%= note.id %>');" onmouseout="Element.toggle('edit_note_icon_<%= note.id %>');">
  4. <%= render :partial => 'event_display', :locals => { :event => note, :type => 'note' } %>
  5. </div>
  6. <%= draggable_element "note_#{note.id}", :revert => false %>
  7. <% end %>
Add Comment
Please, Sign In to add comment