Twitter Digits for web - 如何在embeddable小部件中设置默认国家/地区

时间:2016-08-15 22:17:31

标签: twitter twitter-digits

我想在Twitter Digits for web中将我的默认国家/地区设置为+92。这可以在按钮单击事件上完成。但我不希望它按下按钮。

function onLoginButtonClick(event){
  Digits.logIn({
    phoneNumber: '+92'
  })
    .done(onLogin) /*handle the response*/
    .fail(onLoginFailure);
}

我想用我的默认国家/地区显示可嵌入的小部件。任何可能的解决方案?

1 个答案:

答案 0 :(得分:0)

几天后搜索。我认为twittercommunity形式phoneNumber: '+92'accountFieldstheme可以传递给嵌入函数

Digits.embed({
  container: '#my-digits-container',
  theme: {
   /* Input fields borders */
  },
  phoneNumber: '+92',
  accountFields: Digits.AccountFields.Email
})
.done(onLogin) /*handle the response*/
    .fail(onLoginFailure);
  };