summaryrefslogtreecommitdiff
path: root/tests/typedetect/test6.js
blob: 478b191464ff8461961de574e1f9fbed26bb4df3 (plain)
1
2
3
4
5
6
7
$(document).ready(function() {
    var template = $.get('../templates/article.mustache');
    $.getJSON('../js/article.json', function(view) {
        var html = Mustache.to_html(template, view);
        $("#content").append(html);
    });
});