We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0e91de commit 9a96ac8Copy full SHA for 9a96ac8
webkit2png
@@ -419,6 +419,10 @@ Examples:
419
# Hide the dock icon (needs to run before NSApplication.sharedApplication)
420
AppKit.NSBundle.mainBundle().infoDictionary()['LSBackgroundOnly'] = '1'
421
422
+ # Handles ATS HTTPS requirement introduced in El Cap
423
+ if options.ignore_ssl_check:
424
+ AppKit.NSBundle.mainBundle().infoDictionary()['NSAppTransportSecurity'] = dict(NSAllowsArbitraryLoads = True)
425
+
426
app = AppKit.NSApplication.sharedApplication()
427
428
# create an app delegate
0 commit comments