Skip to content

Instantly share code, notes, and snippets.

@fxxkscript
Created September 16, 2014 08:22
Show Gist options
  • Select an option

  • Save fxxkscript/bbb40aca52a036fbe764 to your computer and use it in GitHub Desktop.

Select an option

Save fxxkscript/bbb40aca52a036fbe764 to your computer and use it in GitHub Desktop.
aspect demo
var Widget = require('core/widget');
var subWidget = Widget.extend({
hello: function() {
console.log('hello');
}
});
var widget = new subWidget();
widget.before('hello', function() {
console.log('before hello');
});
widget.before('hello', function() {
console.log('before hello 2');
});
widget.hello();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment