1 decade ago by Jesse
This is a JavaScript library I wrote to help me debug variables and arrays that change. It uses "Object.observe" and updates a table as soon as something changes. Just include it your game page's HTML and define a HTML table. Then you set the 'data' property to a game variable as soon as the game is ready.
Check it out on Github
new TableView({
table: 'warpTable',
columns: ['name', 'destination', 'from'],
data: ig.game.warps
});
Check it out on Github
