This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var d = new Date(); | |
var utcTime = d.getUTCHours(); | |
var weekend = /^Sat|Sun/.test(d.toUTCString()); | |
var businessHours = utcTime > 13 && utcTime < 22; | |
if (!weekend && businessHours) { | |
SupportKit.init({appToken: '......'}); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface MainViewController () | |
@property CGAffineTransform scale; | |
@property CGAffineTransform rotate; | |
@property CGAffineTransform translate; | |
@end | |
@implementation MainViewController |