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

Commit 7ece3ca

Browse files
committed
Minor style changes
1 parent ee90d99 commit 7ece3ca

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

js/views/settingsVw.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,9 @@ module.exports = Backbone.View.extend({
406406
this.$("#advancedForm input[name=additionalPaymentData][value=" + localStorage.getItem('AdditionalPaymentData') + "]").prop('checked', true);
407407
this.$("#advancedForm input[name=smtp_notifications][value=" + smtp_notifications + "]").prop('checked', true);
408408

409-
currencyList = __.uniq(currencyList, function(item){return item.code;});
409+
currencyList = __.uniq(currencyList, function(item){
410+
return item.code;
411+
});
410412
currencyList = currencyList.sort(function(a, b){
411413
var cA = a.currency.toLowerCase(),
412414
cB = b.currency.toLowerCase();

js/views/userPageVw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -909,7 +909,7 @@ module.exports = baseVw.extend({
909909

910910
this.listenTo(this.followerList, 'usersAdded', ()=>{
911911
var searchTerms = this.$('#inputFollowing').val();
912-
if(this.followingSearch){
912+
if (this.followingSearch){
913913
this.followingSearch.reIndex();
914914
searchTerms && this.followingSearch.search(searchTerms);
915915
}

0 commit comments

Comments
 (0)