Skip to content

Instantly share code, notes, and snippets.

@jstrachan
Forked from chirino/gist:372355
Created April 20, 2010 12:24
Show Gist options
  • Save jstrachan/372364 to your computer and use it in GitHub Desktop.
Save jstrachan/372364 to your computer and use it in GitHub Desktop.
object transformer extends Transformer {
$(".people") { node =>
val odd = node.$("tr.odd")
val even = node.$("tr.even")
var c=0
people.flatMap { p =>
c += 1
transform(if (c%2 == 0) even else odd) { t =>
$(".name").contents = p.name
$(".location").contents = p.location
$"(.person").attribute("class") = "person " + (if (c % 2 == 0) "even" else "odd"))
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment