Skip to content

Commit 00c07a9

Browse files
committed
first lot of changes for #117
1 parent 0d36790 commit 00c07a9

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

lib/at_pwd_link.html

+2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<template name="atPwdLink">
22
<div class="at-pwd-link">
33
<p>
4+
{{preText}}
45
<a href="{{forgotPwdLink}}" id="at-forgotPwd" class="at-link at-pwd {{disabled}}">{{linkText}}</a>
6+
{{suffText}}
57
</p>
68
</div>
79
</template>

lib/at_signin_link.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<template name="atSigninLink">
22
<div class="at-signin-link">
33
<p>
4-
{{text}}
4+
{{preText}}
55
<a href="{{signInLink}}" id="at-signIn" class="at-link at-signin {{disabled}}">{{linkText}}</a>
6+
{{suffText}}
67
</p>
78
</div>
89
</template>

lib/at_signup_link.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<template name="atSignupLink">
22
<div class="at-signup-link">
33
<p>
4-
{{text}}
4+
{{preText}}
55
<a href="{{signUpLink}}" id="at-signUp" class="at-link at-signup {{disabled}}">{{linkText}}</a>
6+
{{suffText}}
67
</p>
78
</div>
89
</template>

package.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
summary: "Accounts Templates styled for Twitter Bootstrap.",
3-
version: "0.9.16",
3+
version: "0.9.16-iron-v1.1",
44
name: "splendido:accounts-templates-bootstrap",
55
git: "https://github.com/splendido/accounts-templates-bootstrap.git",
66
});
@@ -18,7 +18,7 @@ Package.on_use(function(api, where) {
1818
], ["client", "server"]);
1919

2020
api.imply([
21-
"splendido:[email protected]",
21+
"splendido:[email protected]-iron-v1.1",
2222
], ["client", "server"]);
2323

2424
api.add_files([
@@ -58,7 +58,7 @@ Package.on_use(function(api, where) {
5858
Package.on_test(function(api) {
5959
api.use([
6060
"splendido:accounts-templates-bootstrap",
61-
"splendido:[email protected]",
61+
"splendido:[email protected]-iron-v1.1",
6262
]);
6363

6464
api.use([

0 commit comments

Comments
 (0)