Skip to content

Instantly share code, notes, and snippets.

@athap
Created September 6, 2014 17:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save athap/935d403943675cf14d66 to your computer and use it in GitHub Desktop.
Save athap/935d403943675cf14d66 to your computer and use it in GitHub Desktop.
Add to tree
var addToTree = function() {
input = document.getElementById('tree-input');
value = parseInt(input.value);
if(value)
btree.add(value);
else
alert("Wrong input");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment