Files
life_generators/scripts/template/js/main.js

16 lines
209 B
JavaScript

function InitPage() {
$("#init-page").show();
$("#result-page").hide();
}
function Appear() {
$("#init-page").hide();
$("#result-page").show();
}
function get{{ name }}() {
Update();
}
InitPage()