new webpack.optimize.CommonsChunkPlugin({
children: true,
async: true,
});
class Handler {
constructor() {
// creation
}
doSome() {
// action
}
attachment() {
$(document).on('click', selector, this.doSome.bind(this) );
}
}
const self = this;