15 lines
205 B
JavaScript
15 lines
205 B
JavaScript
|
$(function() {
|
||
|
var t = $('#templator-control');
|
||
|
t.css('display','inline');
|
||
|
$('#add-template').hide();
|
||
|
t.click(function() {
|
||
|
$('#add-template').show();
|
||
|
$(this).hide();
|
||
|
return false;
|
||
|
});
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
});
|