6 lines
173 B
JavaScript
6 lines
173 B
JavaScript
jQuery(function () {
|
|
jQuery("table.history .snippet .showAll").click(function () {
|
|
jQuery(this).parents(".snippet").hide().siblings(".full").show();
|
|
});
|
|
});
|