Skip to content

Instantly share code, notes, and snippets.

@mauritslamers
Created October 27, 2010 14:41
Show Gist options
  • Save mauritslamers/649147 to your computer and use it in GitHub Desktop.
Save mauritslamers/649147 to your computer and use it in GitHub Desktop.
var findWhat = Lilypad.Folder;
if(this.getPath('selection.firstObject') instanceof Lilypad.File){
var findWhat = Lilypad.File;
}
=>
var findWhat = (this.getPath('selection.firstObject') instanceof Lilypad.File)? Lilypad.File: Lilypad.Folder;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment