Skip to content

Instantly share code, notes, and snippets.

View misyobun's full-sized avatar
🏠
Working from home

misyobun misyobun

🏠
Working from home
View GitHub Profile
@rayh
rayh / example.js
Last active March 2, 2016 03:26
Example page loader for TVJS/TVML
var SimplePage = function(url) {
var self = this;
function onSelect(event) {
var ele = event.target
var href = ele.getAttribute("href")
if(href) {
new SimplePage(href).load();
}