Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Pod/Classes/PTPopupWebView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ open class PTPopupWebView : UIView {
}

/// Close popup view
open func close() {
@objc open func close() {
if let delegate = delegate {
// if delegate != nil (ex. when use PTPopupWebViewContoller)
delegate.close()
Expand All @@ -481,7 +481,7 @@ open class PTPopupWebView : UIView {
}


internal func buttonTapped (_ sender: AnyObject) {
@objc internal func buttonTapped (_ sender: AnyObject) {
if let button = sender as? UIButton, let index = buttons.index(of: button) {
if index < buttonSettings.count {
let buttonSetting = buttonSettings[index]
Expand Down