mirror of
https://github.com/jcreek/phldnhack.git
synced 2026-07-12 18:43:43 +00:00
21 lines
232 B
JavaScript
21 lines
232 B
JavaScript
$(document).ready(function(){
|
|
|
|
@@include('components.js')
|
|
|
|
$.getJSON('/sample', function(res){
|
|
|
|
var ractive = new Ractive.components.home({
|
|
el:'#load',
|
|
data:res
|
|
});
|
|
|
|
});
|
|
|
|
|
|
//Code below here
|
|
|
|
|
|
|
|
|
|
});
|