Skip to content

Instantly share code, notes, and snippets.

@carmichaelize
Created April 16, 2015 15:42
Show Gist options
  • Save carmichaelize/e8cc070520f3d7a0802f to your computer and use it in GitHub Desktop.
Save carmichaelize/e8cc070520f3d7a0802f to your computer and use it in GitHub Desktop.
Bind array values as function params.
if (_button){
_button.action = callback;
//Bind params
if(params) _button.action = _button.action.bind.apply(_button.action, [null].concat(params));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment