Files
phldnhack/build/parent copy.js
T
Joe Reeve 78b893b5f7 test
2015-11-07 14:39:44 +00:00

24 lines
302 B
JavaScript

$(document).ready(function(){
Ractive.components.home = Ractive.extend({
template:'#home'
});
$.getJSON('/sample', function(res){
var ractive = new Ractive.components[location.pathname.split('/')[1]]({
el:'#load',
data:res
});
});
//Code below here
});