Skip to content

Commit

Permalink
WebController: Display JS errors
Browse files Browse the repository at this point in the history
This actually displays error messages, rather than
notifying that there is an error
  • Loading branch information
pieter committed Oct 21, 2008
1 parent a8d2982 commit 5cb4105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PBWebController.m
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ - (void) webView:(id) v didFinishLoadForFrame:(id) frame

- (void)webView:(WebView *)webView addMessageToConsole:(NSDictionary *)dictionary
{
NSLog(@"Error from webkit!");
NSLog(@"Error from webkit: %@", dictionary);
}

+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector
Expand Down

0 comments on commit 5cb4105

Please sign in to comment.