Skip to content

Instantly share code, notes, and snippets.

@lholmquist
Created October 9, 2012 13:40
Show Gist options
  • Save lholmquist/3858872 to your computer and use it in GitHub Desktop.
Save lholmquist/3858872 to your computer and use it in GitHub Desktop.
//was - worked
securePipe.read({
error: function( data, message ) {
equal( message, "Error: Authentication Required", "Initial Page load Auth Failure" );
start();
}
});
//now - fails
securePipe.read({
error: function( data ) {
equal( data.statusText, "UnAuthorized", "Initial Page load Auth Failure" );
start();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment