templator/js/form.js

15 lines
205 B
JavaScript
Raw Normal View History

2022-12-05 21:39:13 +00:00
$(function() {
var t = $('#templator-control');
t.css('display','inline');
$('#add-template').hide();
t.click(function() {
$('#add-template').show();
$(this).hide();
return false;
});
});