Skip to content

Instantly share code, notes, and snippets.

@jonathantorres
Created May 14, 2013 14:35
Show Gist options
  • Save jonathantorres/5576421 to your computer and use it in GitHub Desktop.
Save jonathantorres/5576421 to your computer and use it in GitHub Desktop.
UI
(function(window) {
function UI() { }
/**
* init UI
*/
UI.prototype.init = function() {
};
/**
* Do lightbox thing
*/
UI.prototype.lightbox = function() {
};
window.UI = UI;
}(window));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment