mirror of
https://github.com/jcreek/phldnhack.git
synced 2026-07-12 18:43:43 +00:00
18 lines
238 B
JavaScript
18 lines
238 B
JavaScript
$(document).ready(function(){
|
|
|
|
|
|
Ractive.plugins.test = $(function($, Ractive){
|
|
})(jQuery, Ractive);
|
|
Ractive.components.plugintest = Ractive.plugins.test;
|
|
|
|
|
|
|
|
var ractive = new Ractive({
|
|
el:'body',
|
|
template:'#home'
|
|
});
|
|
});
|
|
|
|
|
|
|