├── .gitignore ├── Documents ├── PTPopupWebView.md ├── PTPopupWebViewButton.md ├── PTPopupWebViewController.md ├── PTPopupWebViewStyle.md └── README.md ├── Example ├── PTPopupWebView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── PTPopupWebView-Example.xcscheme ├── PTPopupWebView.xcworkspace │ └── contents.xcworkspacedata ├── PTPopupWebView │ ├── AppDelegate.swift │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── demo.imageset │ │ │ ├── Contents.json │ │ │ ├── demo.png │ │ │ ├── demo@2x.png │ │ │ └── demo@3x.png │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── PTPopupWebView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── PTPopupWebView.xcscheme │ └── Target Support Files │ │ ├── PTPopupWebView │ │ ├── Info.plist │ │ ├── PTPopupWebView-dummy.m │ │ ├── PTPopupWebView-prefix.pch │ │ ├── PTPopupWebView-umbrella.h │ │ ├── PTPopupWebView.modulemap │ │ └── PTPopupWebView.xcconfig │ │ ├── Pods-PTPopupWebView_Example │ │ ├── Info.plist │ │ ├── Pods-PTPopupWebView_Example-acknowledgements.markdown │ │ ├── Pods-PTPopupWebView_Example-acknowledgements.plist │ │ ├── Pods-PTPopupWebView_Example-dummy.m │ │ ├── Pods-PTPopupWebView_Example-frameworks.sh │ │ ├── Pods-PTPopupWebView_Example-resources.sh │ │ ├── Pods-PTPopupWebView_Example-umbrella.h │ │ ├── Pods-PTPopupWebView_Example.debug.xcconfig │ │ ├── Pods-PTPopupWebView_Example.modulemap │ │ └── Pods-PTPopupWebView_Example.release.xcconfig │ │ └── Pods-PTPopupWebView_Tests │ │ ├── Info.plist │ │ ├── Pods-PTPopupWebView_Tests-acknowledgements.markdown │ │ ├── Pods-PTPopupWebView_Tests-acknowledgements.plist │ │ ├── Pods-PTPopupWebView_Tests-dummy.m │ │ ├── Pods-PTPopupWebView_Tests-frameworks.sh │ │ ├── Pods-PTPopupWebView_Tests-resources.sh │ │ ├── Pods-PTPopupWebView_Tests-umbrella.h │ │ ├── Pods-PTPopupWebView_Tests.debug.xcconfig │ │ ├── Pods-PTPopupWebView_Tests.modulemap │ │ └── Pods-PTPopupWebView_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── Images ├── colored_button.png ├── colored_title.png ├── custom_action.gif ├── custom_image_button.png ├── fullscreen.png ├── hide_button.png ├── hide_title.png ├── style_fade.gif ├── style_none.gif ├── style_pop.gif ├── style_slide.gif ├── style_spread.gif └── with_frame.png ├── LICENSE ├── PTPopupWebView.podspec ├── Pod ├── Assets │ ├── PTPopupWebView.xcassets │ │ ├── Contents.json │ │ ├── back.imageset │ │ │ ├── Contents.json │ │ │ ├── back.png │ │ │ ├── back@2x.png │ │ │ └── back@3x.png │ │ ├── close.imageset │ │ │ ├── Contents.json │ │ │ ├── close.png │ │ │ ├── close@2x.png │ │ │ └── close@3x.png │ │ ├── forward.imageset │ │ │ ├── Contents.json │ │ │ ├── forward.png │ │ │ ├── forward@2x.png │ │ │ └── forward@3x.png │ │ └── reload.imageset │ │ │ ├── Contents.json │ │ │ ├── reload.png │ │ │ ├── reload@2x.png │ │ │ └── reload@3x.png │ ├── PTPopupWebView.xib │ └── PTPopupWebViewControllerBlur.xib └── Classes │ ├── PTPopupWebView.swift │ ├── PTPopupWebViewButton.swift │ ├── PTPopupWebViewController.swift │ └── PTPopupWebViewStyle.swift ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/.gitignore -------------------------------------------------------------------------------- /Documents/PTPopupWebView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Documents/PTPopupWebView.md -------------------------------------------------------------------------------- /Documents/PTPopupWebViewButton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Documents/PTPopupWebViewButton.md -------------------------------------------------------------------------------- /Documents/PTPopupWebViewController.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Documents/PTPopupWebViewController.md -------------------------------------------------------------------------------- /Documents/PTPopupWebViewStyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Documents/PTPopupWebViewStyle.md -------------------------------------------------------------------------------- /Documents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Documents/README.md -------------------------------------------------------------------------------- /Example/PTPopupWebView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/PTPopupWebView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/PTPopupWebView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/PTPopupWebView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PTPopupWebView.xcodeproj/xcshareddata/xcschemes/PTPopupWebView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/PTPopupWebView.xcodeproj/xcshareddata/xcschemes/PTPopupWebView-Example.xcscheme -------------------------------------------------------------------------------- /Example/PTPopupWebView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/PTPopupWebView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PTPopupWebView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/PTPopupWebView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/PTPopupWebView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/PTPopupWebView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/PTPopupWebView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/PTPopupWebView/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/PTPopupWebView/Images.xcassets/demo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/PTPopupWebView/Images.xcassets/demo.imageset/Contents.json -------------------------------------------------------------------------------- /Example/PTPopupWebView/Images.xcassets/demo.imageset/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/PTPopupWebView/Images.xcassets/demo.imageset/demo.png -------------------------------------------------------------------------------- /Example/PTPopupWebView/Images.xcassets/demo.imageset/demo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/PTPopupWebView/Images.xcassets/demo.imageset/demo@2x.png -------------------------------------------------------------------------------- /Example/PTPopupWebView/Images.xcassets/demo.imageset/demo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/PTPopupWebView/Images.xcassets/demo.imageset/demo@3x.png -------------------------------------------------------------------------------- /Example/PTPopupWebView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/PTPopupWebView/Info.plist -------------------------------------------------------------------------------- /Example/PTPopupWebView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/PTPopupWebView/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/PTPopupWebView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Local Podspecs/PTPopupWebView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/PTPopupWebView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/PTPopupWebView.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PTPopupWebView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/PTPopupWebView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PTPopupWebView/PTPopupWebView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/PTPopupWebView/PTPopupWebView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PTPopupWebView/PTPopupWebView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/PTPopupWebView/PTPopupWebView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PTPopupWebView/PTPopupWebView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/PTPopupWebView/PTPopupWebView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PTPopupWebView/PTPopupWebView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/PTPopupWebView/PTPopupWebView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PTPopupWebView/PTPopupWebView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/PTPopupWebView/PTPopupWebView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Example/Pods-PTPopupWebView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Pods/Target Support Files/Pods-PTPopupWebView_Tests/Pods-PTPopupWebView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /Images/colored_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Images/colored_button.png -------------------------------------------------------------------------------- /Images/colored_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Images/colored_title.png -------------------------------------------------------------------------------- /Images/custom_action.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Images/custom_action.gif -------------------------------------------------------------------------------- /Images/custom_image_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Images/custom_image_button.png -------------------------------------------------------------------------------- /Images/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Images/fullscreen.png -------------------------------------------------------------------------------- /Images/hide_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Images/hide_button.png -------------------------------------------------------------------------------- /Images/hide_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Images/hide_title.png -------------------------------------------------------------------------------- /Images/style_fade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Images/style_fade.gif -------------------------------------------------------------------------------- /Images/style_none.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Images/style_none.gif -------------------------------------------------------------------------------- /Images/style_pop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Images/style_pop.gif -------------------------------------------------------------------------------- /Images/style_slide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Images/style_slide.gif -------------------------------------------------------------------------------- /Images/style_spread.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Images/style_spread.gif -------------------------------------------------------------------------------- /Images/with_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Images/with_frame.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/LICENSE -------------------------------------------------------------------------------- /PTPopupWebView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/PTPopupWebView.podspec -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/Contents.json -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/back.imageset/Contents.json -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/back.imageset/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/back.imageset/back.png -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/back.imageset/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/back.imageset/back@2x.png -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/back.imageset/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/back.imageset/back@3x.png -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/close.imageset/Contents.json -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/close.imageset/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/close.imageset/close.png -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/close.imageset/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/close.imageset/close@2x.png -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/close.imageset/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/close.imageset/close@3x.png -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/forward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/forward.imageset/Contents.json -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/forward.imageset/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/forward.imageset/forward.png -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/forward.imageset/forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/forward.imageset/forward@2x.png -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/forward.imageset/forward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/forward.imageset/forward@3x.png -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/reload.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/reload.imageset/Contents.json -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/reload.imageset/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/reload.imageset/reload.png -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/reload.imageset/reload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/reload.imageset/reload@2x.png -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xcassets/reload.imageset/reload@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xcassets/reload.imageset/reload@3x.png -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebView.xib -------------------------------------------------------------------------------- /Pod/Assets/PTPopupWebViewControllerBlur.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Assets/PTPopupWebViewControllerBlur.xib -------------------------------------------------------------------------------- /Pod/Classes/PTPopupWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Classes/PTPopupWebView.swift -------------------------------------------------------------------------------- /Pod/Classes/PTPopupWebViewButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Classes/PTPopupWebViewButton.swift -------------------------------------------------------------------------------- /Pod/Classes/PTPopupWebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Classes/PTPopupWebViewController.swift -------------------------------------------------------------------------------- /Pod/Classes/PTPopupWebViewStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/Pod/Classes/PTPopupWebViewStyle.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjocprac/PTPopupWebView/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------