mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
8 lines
No EOL
217 B
JavaScript
8 lines
No EOL
217 B
JavaScript
$(document).ready(function(){
|
|
$.getJSON('describe.json', function(data){
|
|
var source = $('#template').html();
|
|
var template = Handlebars.compile(source);
|
|
|
|
$('#settings').html(template(data));
|
|
});
|
|
}); |