8 lines
238 B
JavaScript
8 lines
238 B
JavaScript
$(document).ready(function() {
|
|
$(".template-selection").click( function(event) {
|
|
var templateId = event.target.id.match(/\d/g).join("");
|
|
$("#template_id").val(templateId);
|
|
$("#create_from_template_form").submit();
|
|
});
|
|
});
|