mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-24 22:10:16 +02:00
13 lines
No EOL
318 B
JavaScript
13 lines
No EOL
318 B
JavaScript
$(document).ready(function(){
|
|
$.getJSON('describe.json', function(data){
|
|
|
|
Handlebars.registerHelper('setKey', function(value){
|
|
this.key = value;
|
|
});
|
|
|
|
var source = $('#template').html();
|
|
var template = Handlebars.compile(source);
|
|
|
|
$('#settings').html(template(data));
|
|
});
|
|
}); |