Skip to content

Instantly share code, notes, and snippets.

@matzew
Created October 25, 2012 13:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matzew/3952509 to your computer and use it in GitHub Desktop.
Save matzew/3952509 to your computer and use it in GitHub Desktop.
JS Error ?
var testPipeline = aerogear.pipeline([
{
name: "tasks",
settings: {
url: "/todo-server/tasks"
}
}
]);
try {
var badGuy = testPipeline.pipes.fooo;
}catch(e) {
console.log(e);
}
console.log("BAD GUY..." + badGuy);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment