Skip to content

Instantly share code, notes, and snippets.

View jeffrey-vella's full-sized avatar

jeffrey-vella

View GitHub Profile
var LeafNode = new Class({
initialize: function(order){
this.order = order;
this.isLeafNode = true;
this.isInternalNode = false;
this.parentNode = null;
this.nextNode = null;