Skip to content

Instantly share code, notes, and snippets.

@konrados
Last active September 30, 2016 07:01
Show Gist options
  • Save konrados/75aa530df12bedf69162f584e947e09f to your computer and use it in GitHub Desktop.
Save konrados/75aa530df12bedf69162f584e947e09f to your computer and use it in GitHub Desktop.
class Utils {
constructor() {
$('.expander').click(function(){
console.log ('test');
});
console.log('but yes, THIS sentence is printed');
}
}
var utils = new Utils();
module.exports = Utils;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment