Compare commits
No commits in common. "master" and "1.3.0" have entirely different histories.
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = 'PanModal'
|
s.name = 'PanModal'
|
||||||
s.version = '1.3.1'
|
s.version = '1.3.0'
|
||||||
s.summary = 'PanModal is an elegant and highly customizable presentation API for constructing bottom sheet modals on iOS.'
|
s.summary = 'PanModal is an elegant and highly customizable presentation API for constructing bottom sheet modals on iOS.'
|
||||||
|
|
||||||
# This description is used to generate tags and improve search results.
|
# This description is used to generate tags and improve search results.
|
||||||
|
|
@ -18,10 +18,10 @@ Pod::Spec.new do |s|
|
||||||
# * Finally, don't worry about the indent, CocoaPods strips it!
|
# * Finally, don't worry about the indent, CocoaPods strips it!
|
||||||
|
|
||||||
s.description = 'PanModal is an elegant and highly customizable presentation API for constructing bottom sheet modals on iOS.'
|
s.description = 'PanModal is an elegant and highly customizable presentation API for constructing bottom sheet modals on iOS.'
|
||||||
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/PanModal'
|
s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/TIPanModal'
|
||||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||||
s.author = { 'slack' => 'opensource@slack.com' }
|
s.author = { 'slack' => 'opensource@slack.com' }
|
||||||
s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/PanModal.git', :tag => s.version.to_s }
|
s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/TIPanModal.git', :tag => s.version.to_s }
|
||||||
s.social_media_url = 'https://twitter.com/slackhq'
|
s.social_media_url = 'https://twitter.com/slackhq'
|
||||||
s.ios.deployment_target = '10.0'
|
s.ios.deployment_target = '10.0'
|
||||||
s.swift_version = '5.0'
|
s.swift_version = '5.0'
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ open class DimmedView: UIView {
|
||||||
|
|
||||||
// MARK: - Initializers
|
// MARK: - Initializers
|
||||||
|
|
||||||
public init() {
|
init() {
|
||||||
super.init(frame: .zero)
|
super.init(frame: .zero)
|
||||||
alpha = 0.0
|
alpha = 0.0
|
||||||
addGestureRecognizer(tapGesture)
|
addGestureRecognizer(tapGesture)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue