Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 174a154

Browse files
author
Nick Litwin
committedDec 16, 2015
Rename tc-input to topcoder-input since that name needs to be used in style guide
1 parent 8d7ee98 commit 174a154

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed
 

‎app/settings/account-info/account-info.jade

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
.form-label Current password
1717

1818
.validation-bar(ng-class="{ 'error-bar': (vm.newPasswordForm.currentPassword.$dirty && vm.newPasswordForm.currentPassword.$invalid) }")
19-
toggle-password.tc-input.password(ng-model="vm.currentPassword")
19+
toggle-password.topcoder-input.password(ng-model="vm.currentPassword")
2020

2121
.form-input-error(ng-show="vm.newPasswordForm.currentPassword.$dirty && vm.newPasswordForm.currentPassword.$invalid")
2222
p(ng-show="vm.newPasswordForm.currentPassword.$error.required") This is a required field.
@@ -26,7 +26,7 @@
2626
.form-label New Password
2727

2828
.validation-bar
29-
toggle-password-with-tips.tc-input.password(placeholder="Pick a new password")
29+
toggle-password-with-tips.topcoder-input.password(placeholder="Pick a new password")
3030

3131
.tips.password-tips(ng-show="vm.passwordFocus")
3232
.arrow
@@ -64,7 +64,7 @@
6464

6565
span.mandatory *mandatory
6666
.validation-bar(ng-class="{ 'error-bar': (vm.accountInfoForm.$dirty && vm.accountInfoForm.firstname.$invalid), 'success-bar': (vm.accountInfoForm.$dirty && vm.accountInfoForm.firstname.$valid)}")
67-
input.tc-input(
67+
input.topcoder-input(
6868
name="firstname", type="text",
6969
placeholder="First",
7070
ng-model="vm.userData.firstName",
@@ -78,7 +78,7 @@
7878
span(style="text-transform: none;")  (Surname)
7979
span.mandatory *mandatory
8080
.validation-bar(ng-class="{ 'error-bar': (vm.accountInfoForm.$dirty && vm.accountInfoForm.lastname.$invalid), 'success-bar': (vm.accountInfoForm.$dirty && vm.accountInfoForm.lastname.$valid)}")
81-
input.tc-input(
81+
input.topcoder-input(
8282
name="lastname", type="text",
8383
placeholder="Last",
8484
ng-model="vm.userData.lastName",
@@ -95,7 +95,7 @@
9595

9696
.section-fields
9797
.form-label.address Address
98-
input.tc-input(
98+
input.topcoder-input(
9999
name="address", type="text",
100100
placeholder="123 Topcoder Ave.",
101101
value="{{vm.homeAddress.streetAddr1}}",
@@ -105,7 +105,7 @@
105105

106106
.form-label Address 2
107107
span(style="text-transform: none;")  (apt., suite, etc.)
108-
input.tc-input(
108+
input.topcoder-input(
109109
name="address2",
110110
type="text",
111111
placeholder="Suite 42",
@@ -115,7 +115,7 @@
115115
)
116116

117117
.form-label City
118-
input.tc-input(
118+
input.topcoder-input(
119119
name="city", type="text",
120120
value="{{vm.homeAddress.city}}",
121121
placeholder="Best City in the World",
@@ -124,7 +124,7 @@
124124
)
125125

126126
.form-label State/Province
127-
input.tc-input(
127+
input.topcoder-input(
128128
name="state", type="text",
129129
value="{{vm.homeAddress.stateCode}}",
130130
placeholder="California",
@@ -133,7 +133,7 @@
133133
)
134134

135135
.form-label Zip/Post Code
136-
input.tc-input(
136+
input.topcoder-input(
137137
name="zipcode", type="text",
138138
placeholder="Zip"
139139
value="{{vm.homeAddress.zip}}",

‎app/settings/edit-profile/edit-profile.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
.form-label(style="width: 100%;") short bio
4848
span.char-count {{vm.userData.description.length || 0}}
4949
span.grey  / 256
50-
textarea.tc-input(name="description", ng-model="vm.userData.description", data-ng-trim="false", maxlength="256", placeholder="E.g., I'm a JS architect interested in creating new data interchange formats. I love sci-fi and riding my motorcycle.")
50+
textarea.topcoder-input(name="description", ng-model="vm.userData.description", data-ng-trim="false", maxlength="256", placeholder="E.g., I'm a JS architect interested in creating new data interchange formats. I love sci-fi and riding my motorcycle.")
5151

5252
.settings-section.tracks
5353
.section-info

0 commit comments

Comments
 (0)
This repository has been archived.