From 5cb41059981ace2e160e7da15b13df6f462852df Mon Sep 17 00:00:00 2001 From: Pieter de Bie Date: Sun, 19 Oct 2008 16:32:23 +0200 Subject: [PATCH] WebController: Display JS errors This actually displays error messages, rather than notifying that there is an error --- PBWebController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBWebController.m b/PBWebController.m index 1c8372c..a321578 100644 --- a/PBWebController.m +++ b/PBWebController.m @@ -36,7 +36,7 @@ - (void)webView:(WebView *)webView addMessageToConsole:(NSDictionary *)dictionary { - NSLog(@"Error from webkit!"); + NSLog(@"Error from webkit: %@", dictionary); } + (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector