Skip to content

Instantly share code, notes, and snippets.

View yakovlev-vladimir's full-sized avatar

Yakovlev Vladimir yakovlev-vladimir

View GitHub Profile
@friggeri
friggeri / gist:1570840
Created January 6, 2012 14:30
More CoffeeScriptish
do ($ = jQuery) ->
$.fn.zebraTable = (options) ->
defaults =
evenColor: '#ccc'
oddColor : '#eee'
options = $.extend(defaults, options)
@each ->
$("tr:even", @).css('background-color', options.evenColor)
$("tr:odd", @).css('background-color', options.oddColor)