Merge pull request #313 from nabla-c0d3/develop

Switch BITWebTableViewCell baseURL to "about:blank" With thx to @nabla-c0d3 =)
This commit is contained in:
Benjamin Scholtysik (Reimold)
2016-08-30 13:17:43 -07:00
committed by GitHub

View File

@@ -88,7 +88,7 @@ body { font: 13px 'Helvetica Neue', Helvetica; color:#626262; word-wrap:break-wo
//HockeySDKLog(@"%@\n%@\%@", PSWebTableViewCellHtmlTemplate, deviceWidth, self.webViewContent);
NSString *contentHtml = [NSString stringWithFormat:BITWebTableViewCellHtmlTemplate, deviceWidth, self.webViewContent];
[_webView loadHTMLString:contentHtml baseURL:nil];
[_webView loadHTMLString:contentHtml baseURL:[NSURL URLWithString:@"about:blank"]];
}
}