mirror of
https://github.com/jcreek/phldnhack.git
synced 2026-07-12 18:43:43 +00:00
24 lines
302 B
JavaScript
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
|
|
|
|
|
|
|
|
|
|
});
|