Skip to content

Instantly share code, notes, and snippets.

@emoen
Last active August 29, 2015 13:55
Show Gist options
  • Save emoen/8689241 to your computer and use it in GitHub Desktop.
Save emoen/8689241 to your computer and use it in GitHub Desktop.
filter: function(record) {
if (record.get("title").indexOf("Europa -hvit bakgrunn") != -1) {
return false;
} else if ( record.get("title").indexOf("Europa") != -1) {
return false;
}
return true;
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment