mirror of
https://github.com/Growstuff/growstuff.git
synced 2025-12-28 20:17:47 -05: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();
|
|
});
|
|
});
|