toggle buttons on row click

This commit is contained in:
sm
2013-03-05 23:26:57 -08:00
parent c1787b71b7
commit 5662badc50
3 changed files with 9 additions and 14 deletions
+6
View File
@@ -0,0 +1,6 @@
$(function() {
$(".controls").hide();
$(".name").click(function(e) {
$(this).next(".controls").toggle();
});
});