Skip to content

Instantly share code, notes, and snippets.

@mauritslamers
Created October 27, 2010 15:02
Show Gist options
  • Save mauritslamers/649197 to your computer and use it in GitHub Desktop.
Save mauritslamers/649197 to your computer and use it in GitHub Desktop.
someController = SC.Controller.create({
isTypeCheckCreator: function(type){
return function(name){
return (name.toLowerCase().indexOf(type)!= -1);
}
},
isJPG: this.isTypeCheckCreator('.jpg'),
isPNG: this.isTypeCheckCreator('.png')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment