Skip to content

Instantly share code, notes, and snippets.

@brendt
Last active September 2, 2015 11:09
Show Gist options
  • Save brendt/aad3dd3284d10dd8c8ca to your computer and use it in GitHub Desktop.
Save brendt/aad3dd3284d10dd8c8ca to your computer and use it in GitHub Desktop.
Vanilla JS: Wordcloud - App.js #1
"use strict";
var App = {
fontSize : 5,
multiplier : 3,
min : 1,
default : 'word',
init(id) {
id = id || "app";
this.domElem = document.getElementById(id);
this.words = [];
},
};
document.addEventListener("DOMContentLoaded", function(domEvent) {
App.init();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment