mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-27 19:23:59 -04:00
7 lines
146 B
JavaScript
7 lines
146 B
JavaScript
$(document).ready(function() {
|
|
$('.editable').click(function() {
|
|
$(this.dataset.form).show();
|
|
$(this.dataset.display).hide();
|
|
});
|
|
});
|