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
"LIOEmailPlaceholder" = "[email protected]"; | |
"LIOAltChatViewController.EmailChatButton" = "Email Chat"; | |
"LIOAltChatViewController.EndSessionButton" = "End Session"; | |
"LIOAltChatViewController.ReconnectionLabel" = "Reconnecting..."; | |
"LIOAltChatViewController.ReconnectionHideButton" = "Hide"; | |
"LIOAltChatViewController.LocalNameLabel" = "Me"; | |
"LIOAltChatViewController.AgentTypingNotification" = "Agent is typing..."; | |
"LIOChatBubbleView.LinkAlert" = "Are you sure you want to leave the app and visit \"%@\"?"; |
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
<script type="text/javascript"> | |
/* LP Mobile JS Configuration */ | |
var _LP_CFG_ = { | |
app_id : "YOUR_MOBILE_SITE_ID", | |
options : { | |
chatDisabled : true | |
} | |
}; | |
/* End of Configuration */ | |
</script> |
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
{ | |
"Client.All.AgentTyping": "Agent is Typing...", | |
"Client.All.Close": "Close", | |
"Client.All.ConfirmEndSession": "Would you like to end this chat session?", | |
"Client.All.EmailChat": "Email Chat", | |
"Client.All.EndSession": "End Session", | |
"Client.All.ErrorNoEmail": "Please enter an email address.", | |
"Client.All.ErrorNoMessage": "Please enter a message.", | |
"Client.All.ErrorUndefined": "Sorry, something went wrong!", | |
"Client.All.FailedReconnect": "Reconnect failed", |
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
{ | |
"Client.All.AgentTyping": "担当者がメッセージを入力中です...", | |
"Client.All.Close": "閉じる", | |
"Client.All.ConfirmEndSession": "このチャットを終了されますか?", | |
"Client.All.EmailChat": "チャットをEメールで送信", | |
"Client.All.EndSession": "チャットを終了する", | |
"Client.All.ErrorNoEmail": "Please enter an email address.", | |
"Client.All.ErrorNoMessage": "Please enter a message.", | |
"Client.All.ErrorUndefined": "申し訳ございません。問題が発生しました。", | |
"Client.All.FailedReconnect": "Reconnect failed", |
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
-(void)viewWillAppear:(BOOL)animated | |
{ | |
[[LIOLookIOManager sharedLookIOManager] setSkill:@"YOUR NEW SKILL"]; | |
// YOUR CODE | |
} |
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
-(UInt32)lookIOManagerEnabledCollaborationComponents:(LIOLookIOManager *)aManager { | |
return kLPCollaborationComponentPhoto; | |
} |
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
// For apps supporting iOS 6.0 and above | |
-(BOOL)shouldAutorotate { | |
LIOLookIOManager* lookIOManager = [LIOLookIOManager sharedLookIOManager]; | |
if ([lookIOManager shouldLockInterfaceOrientation]) | |
return NO; | |
return YES; | |
} | |
// For apps supporting iOS < 6.0 |
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 MyNavigationController : UINavigationController | |
@end | |
@implementation MyNavigationController | |
-(BOOL)shouldAutorotate { | |
LIOLookIOManager* lookIOManager = [LIOLookIOManager sharedLookIOManager]; | |
if ([lookIOManager shouldLockInterfaceOrientation]) | |
return NO; |
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
// Use the following to report an event. | |
- (void)reportEvent:(NSString *)anEvent; | |
- (void)reportEvent:(NSString *)anEvent withData:(id<NSObject>)someData; | |
// Use the following constants for reporting common events. | |
NSString *kLPEventConversion; | |
NSString *kLPEventPageView; | |
NSString *kLPEventSignUp; | |
NSString *kLPEventSignIn; | |
NSString *kLPEventAddedToCart; |
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
LIOLookIOManager *lookIO = [LIOLookIOManager sharedLookIOManager]; | |
[lookIO addCustomVariables:[NSDictionary dictionaryWithObjectsAndKeys: | |
@"[email protected]", @"email_address", | |
@"123456", @"customer_id", | |
nil]; |