You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var example_template;
function init()
{
msg = Msg();
compile_templates();
}
function compile_templates()
{
example_template = Handlebars.compile(document.getElementById('example-template').innerHTML);
}
function show_example(title, content)
{
var c = {title: title, body: content};
var html = example_template(c);
msg.show(html);
}