我想在Twitter Digits for web中将我的默认国家/地区设置为+92
。这可以在按钮单击事件上完成。但我不希望它按下按钮。
function onLoginButtonClick(event){
Digits.logIn({
phoneNumber: '+92'
})
.done(onLogin) /*handle the response*/
.fail(onLoginFailure);
}
我想用我的默认国家/地区显示可嵌入的小部件。任何可能的解决方案?
答案 0 :(得分:0)
几天后搜索。我认为twittercommunity形式phoneNumber: '+92'
,accountFields
,theme
可以传递给嵌入函数
Digits.embed({
container: '#my-digits-container',
theme: {
/* Input fields borders */
},
phoneNumber: '+92',
accountFields: Digits.AccountFields.Email
})
.done(onLogin) /*handle the response*/
.fail(onLoginFailure);
};