gitlabhq/app/helpers/notes_helper.rb
2012-09-15 11:54:46 +02:00

18 lines
286 B
Ruby

module NotesHelper
def loading_more_notes?
params[:loading_more].present?
end
def loading_new_notes?
params[:loading_new].present?
end
def note_vote_class(note)
if note.upvote?
"vote upvote"
elsif note.downvote?
"vote downvote"
end
end
end