This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<script src="http://rawgit.com/amark/gun/master/gun.js"></script> | |
<script> | |
localStorage.clear(); | |
var gun = Gun(); | |
// define the snake team! | |
var snakes = gun.get('team/snakes').put({team: "snakes"}); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<script src="http://rawgit.com/amark/gun/master/gun.js"></script> | |
<script> | |
localStorage.clear(); // reset the data! | |
Gun.chain.joinTeam = function(team){ // extends gun to make bidirectional pointing easy! | |
var member = this; | |
member.val(function(theMember){ | |
team.set(theMember); // link the member to the team. | |
}); |