Skip to content

Commit

Permalink
changes due to feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
cybre-finn authored and scottnonnenberg committed Jun 7, 2017
1 parent 068cf50 commit 1021f83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/views/conversation_view.js
Expand Up @@ -182,7 +182,7 @@
}
},
toggleLengthWarning: function() {
if (this.$('.send-message').val().length > 2000 || this.fileInput.hasFiles()) {
if (this.$('.send-message').val().length > 2000) {
this.$('.android-length-warning').show();
} else {
this.$('.android-length-warning').hide();
Expand Down

0 comments on commit 1021f83

Please sign in to comment.