Commit 4d75a288 by Takatoshi Miura

招待処理実装

parent 54452c9b
...@@ -2124,7 +2124,11 @@ CHAT_UI.showAddUserConfirmView = function() { ...@@ -2124,7 +2124,11 @@ CHAT_UI.showAddUserConfirmView = function() {
selectedUserList.forEach(function(user){ selectedUserList.forEach(function(user){
userIdList.push(user.shopMemberId); userIdList.push(user.shopMemberId);
}) })
android.inviteUsers(userIdList.join(',')); if (typeof(android) != "undefined") {
android.inviteUsers(userIdList.join(','));
} else {
webkit.messageHandlers.inviteUsers.postMessage({"userIdList": userIdList.join(',')});
}
}); });
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment