mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-04-12 02:50:27 -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();
|
|
});
|
|
});
|