Skip to content

Instantly share code, notes, and snippets.

@kawasako
Last active June 18, 2016 19:57
Show Gist options
  • Save kawasako/a4214a0919ca680e4252ba6194e53f4e to your computer and use it in GitHub Desktop.
Save kawasako/a4214a0919ca680e4252ba6194e53f4e to your computer and use it in GitHub Desktop.
import $ from 'jquery';
class HogeWidget {
constructor(el) {
this.$el = $(el);
}
bind() {
this.$el.on('click', () => { ... });
}
init() {
this.bind();
}
}
// initializer
$('[data-widget="hoge"]').each(function(el) {
let w = new HogeWidget(el);
w.init();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment