Skip to content

Instantly share code, notes, and snippets.

@atomgiant
Last active January 2, 2016 03:59
Show Gist options
  • Save atomgiant/8247276 to your computer and use it in GitHub Desktop.
Save atomgiant/8247276 to your computer and use it in GitHub Desktop.
JS Module
var App = App || {};
App.Commentable = function(options) {
var options = $.extend({
log_tail: 'is the greatest'
}, options);
return {
log: function(msg) {
console.log(msg + ' ' + options.log_tail);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment