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

21 lines
307 B
JavaScript

$(document).ready(function(){
@@include('components.js')
$.getJSON('/data/'+location.pathname.split('/').slice(3).join('/'), function(res){
var ractive = new Ractive.components[location.pathname.split('/')[2]]({
el:'#load',
data:res
});
});
//Code below here
});