Browse Source

Updating copy functionality!

pull/101/head
Abhishek 3 years ago
parent
commit
13a13195fb
  1. 12
      Clocker/Panel/ParentPanelController.swift

12
Clocker/Panel/ParentPanelController.swift

@ -758,16 +758,12 @@ class ParentPanelController: NSWindowController {
PerfLogger.endMarker("Retrieve Calendar Events") PerfLogger.endMarker("Retrieve Calendar Events")
} }
} }
@IBAction func shareAction(_ sender: NSButton) { @IBAction func shareAction(_ sender: NSButton) {
let promotionText = "Keep track of your friends and colleagues in different timezones using Clocker: appstore.com/mac/clockermenubarworldclock" let copyAllTimes = retrieveAllTimes()
let servicePicker = NSSharingServicePicker(items: [copyAllTimes])
guard let url = URL(string: "https://goo.gl/xyLA4j") else {
assertionFailure("Data was unexpectedly nil")
return
}
let servicePicker = NSSharingServicePicker(items: [promotionText, url])
servicePicker.delegate = self servicePicker.delegate = self
servicePicker.show(relativeTo: sender.bounds, servicePicker.show(relativeTo: sender.bounds,

Loading…
Cancel
Save