Skip to content

Instantly share code, notes, and snippets.

@k1r0s
Last active March 22, 2017 07:42
Show Gist options
  • Save k1r0s/8bef4433231a5534f3da05790c0d2a3f to your computer and use it in GitHub Desktop.
Save k1r0s/8bef4433231a5534f3da05790c0d2a3f to your computer and use it in GitHub Desktop.
kaop showcase about advice placements
var Dummy = Class({
someMethod: [ //decoratedMethod
"subscribe","$inject", //befores
function($$dep1){
//method body
},
"trigger: 'action'", //afters (advice with an argument)
],
anotherMethod: function(){
/* method without advices */
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment