Skip to content

Instantly share code, notes, and snippets.

@antw
Last active October 19, 2015 15:21
Show Gist options
  • Save antw/3c86b4df34281d768ca5 to your computer and use it in GitHub Desktop.
Save antw/3c86b4df34281d768ca5 to your computer and use it in GitHub Desktop.
Old-style JS class
function TopologyPreviewer(topologyGraph, presetData, style) {
// Private variables.
var privateOne, privateTwo;
// Public variables.
this.publicOne = 1;
this.publicTwo = 2;
// Public methods.
this.preview = function() {
// ...
}
// Private methods.
function updateTree(source) {
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment