mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-04-01 13:44:49 -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();
|
|
});
|
|
});
|