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