Add new analytics parameters pathSuffix
Some checks failed
openium/resgen.swift/pipeline/head There was a failure building this commit
Some checks failed
openium/resgen.swift/pipeline/head There was a failure building this commit
This commit is contained in:
@@ -6,26 +6,26 @@ import UIKit
|
||||
extension UIImageYolo {
|
||||
|
||||
public var article_notification_pull_detail: UIImage {
|
||||
UIImage(named: "article_notification_pull_detail")!
|
||||
UIImage(named: "article_notification_pull_detail", in: Bundle.main, with: nil)!
|
||||
}
|
||||
|
||||
public var article_notification_pull: UIImage {
|
||||
UIImage(named: "article_notification_pull")!
|
||||
UIImage(named: "article_notification_pull", in: Bundle.main, with: nil)!
|
||||
}
|
||||
|
||||
public var new_article: UIImage {
|
||||
UIImage(named: "new_article")!
|
||||
UIImage(named: "new_article", in: Bundle.main, with: nil)!
|
||||
}
|
||||
|
||||
public var welcome_background: UIImage {
|
||||
UIImage(named: "welcome_background")!
|
||||
UIImage(named: "welcome_background", in: Bundle.main, with: nil)!
|
||||
}
|
||||
|
||||
public var article_trash: UIImage {
|
||||
UIImage(named: "article_trash")!
|
||||
UIImage(named: "article_trash", in: Bundle.main, with: nil)!
|
||||
}
|
||||
|
||||
public var ic_close_article: UIImage {
|
||||
UIImage(named: "ic_close_article")!
|
||||
UIImage(named: "ic_close_article", in: Bundle.main, with: nil)!
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user