Rails alt row colors


/ Published in: Ruby
Save to your folder(s)



Copy this code and paste it in your HTML
  1. # Used to alternate row colors in a table
  2. def alt( s = '', s2 = '2' )
  3. @alt_state = true if @alt_state.nil?
  4. @alt_state = !@alt_state
  5. @alt_state ? s2 : s
  6. end

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.