Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit bae51d1

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/master' into lazyLoadFollowers
2 parents 7d18d6b + 7286a93 commit bae51d1

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

js/templates/settings.html

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1160,7 +1160,7 @@ <h3 class="padding15 margin0 fontWeight500"><%= polyglot.t('Advanced') %></h3>
11601160
<% if(config.testnet) { %>
11611161
<div class="positionTopRight padding10">
11621162
<span class="btn btn-txt custCol-secondary">
1163-
<%= polyglot.t('MustTestnetAddress') %> <!--remove this in production-->
1163+
<%= polyglot.t('MustTestnetAddress') %>
11641164
</span>
11651165
</div>
11661166
<% } %>
@@ -1181,8 +1181,10 @@ <h3 class="padding15 margin0 fontWeight500"><%= polyglot.t('Advanced') %></h3>
11811181
<div class="fieldItem flexRow">
11821182
<div class="flexRow">
11831183
<div class="flexCol-4">
1184-
<input type="radio" class="fieldItem" id="fancyStylesYes" name="notFancy" value="true" /><label for="fancyStylesYes" class="radioLabel"><%= polyglot.t('Yes') %></label>
1185-
<input type="radio" class="fieldItem" id="fancyStylesNo" name="notFancy" value="false" checked/><label for="fancyStylesNo" class="radioLabel"><%= polyglot.t('No') %></label>
1184+
<input type="radio" class="fieldItem" id="fancyStylesYes" name="notFancy" value="true" />
1185+
<label for="fancyStylesYes" class="radioLabel"><%= polyglot.t('Yes') %></label>
1186+
<input type="radio" class="fieldItem" id="fancyStylesNo" name="notFancy" value="false" checked/>
1187+
<label for="fancyStylesNo" class="radioLabel"><%= polyglot.t('No') %></label>
11861188
</div>
11871189
<div class="flexCol-8">
11881190
<div class="marginLeft10 textSize11px txt-fade"><%= polyglot.t('NoFancyStylesWarning') %></div>
@@ -1194,7 +1196,6 @@ <h3 class="padding15 margin0 fontWeight500"><%= polyglot.t('Advanced') %></h3>
11941196
</div>
11951197

11961198
<div class="flexRow">
1197-
11981199
<div class="flexCol-3 borderRight custCol-border">
11991200
<div class="fieldItem">
12001201
<label>
@@ -1208,29 +1209,32 @@ <h3 class="padding15 margin0 fontWeight500"><%= polyglot.t('Advanced') %></h3>
12081209
<div class="fieldItem flexRow">
12091210
<div class="flexRow">
12101211
<div class="flexCol-4">
1211-
<input type="radio" class="fieldItem" id="useTestnetYes" name="useTestnet" value="true" <% if(window.config.testnet){ %>checked<% } %> /><label for="useTestnetYes" class="radioLabel"><%= polyglot.t('Yes') %></label>
1212-
<input type="radio" class="fieldItem" id="useTestnetNo" name="useTestnet" value="false" <% if(!window.config.testnet){ %>checked<% } %> /><label for="useTestnetNo" class="radioLabel"><%= polyglot.t('No') %></label>
1212+
<input type="radio" class="fieldItem" id="useTestnetYes" name="useTestnet" value="true" <% if(window.config.testnet){ %>checked<% } %> />
1213+
<label for="useTestnetYes" class="radioLabel"><%= polyglot.t('Yes') %></label>
1214+
<input type="radio" class="fieldItem" id="useTestnetNo" name="useTestnet" value="false" <% if(!window.config.testnet){ %>checked<% } %> />
1215+
<label for="useTestnetNo" class="radioLabel"><%= polyglot.t('No') %></label>
12131216
</div>
12141217
</div>
12151218
</div>
12161219
</div>
1217-
12181220
</div>
12191221

12201222
<div class="flexRow">
12211223
<div class="flexCol-3 borderRight custCol-border">
12221224
<div class="fieldItem">
12231225
<label>
12241226
<%= polyglot.t('AdditionalPaymentData') %>
1225-
<i class="ion-help-circled tooltip tooltip-box" data-tooltip="<%= polyglot.t('AdditionalPaymentDataInfo') %>"></i>
12261227
</label>
1228+
<i class="ion-help-circled tooltip tooltip-box" data-tooltip="<%= polyglot.t('AdditionalPaymentDataInfo') %>"></i>
12271229
</div>
12281230
</div>
12291231

12301232
<div class="flexCol-9 borderRight0 custCol-border">
12311233
<div class="fieldItem">
1232-
<input type="radio" class="fieldItem" id="additional_payment_data_yes" name="additionalPaymentData" value="true" checked /><label for="additional_payment_data_yes" class="radioLabel"><%= polyglot.t('Yes') %></label>
1233-
<input type="radio" class="fieldItem" id="additional_payment_data_no" name="additionalPaymentData" value="false" /><label for="additional_payment_data_no" class="radioLabel"><%= polyglot.t('No') %></label>
1234+
<input type="radio" class="fieldItem" id="additional_payment_data_yes" name="additionalPaymentData" value="true" checked />
1235+
<label for="additional_payment_data_yes" class="radioLabel"><%= polyglot.t('Yes') %></label>
1236+
<input type="radio" class="fieldItem" id="additional_payment_data_no" name="additionalPaymentData" value="false" />
1237+
<label for="additional_payment_data_no" class="radioLabel"><%= polyglot.t('No') %></label>
12341238
</div>
12351239
</div>
12361240
</div>

0 commit comments

Comments
 (0)