改变流星账户的下拉方向

时间:2015-08-29 00:58:09

标签: angularjs meteor

我正在使用Meteor套餐:

 accounts-ui
 accounts-password
 accounts-facebook

我在我的视图中实现了Meteor帐户,如下所示:

<meteor-include src="loginButtons"></meteor-include>

现在,登录&#39;链接向右对齐所以我希望它向左下拉,但它在右侧下降,因此,它不适合浏览器。 enter image description here

[!1]

我想要更改它,使其向左下方,因此,它将在页面上。另外,我使用AngularJS w / Meteor

1 个答案:

答案 0 :(得分:1)

如果在常规.html文件中,使用空格键语法很容易:

{{> loginButtons align="left"}}

如果在.ng.html文件中,建议您使用angular-meteor关注api:使用blaze-template

  1. meteor add urigo:angular-blaze-template
  2. 在您的主.html文件中,创建一个新的Blaze模板: <template name="loginButtonsWithParameters"> {{> loginButtons align="left"}} </template>
  3. 在要包含loginButtons的.ng.html文件中,添加:
    <blaze-template name="loginButtonsWithParameters"></blaze-template>