Compose flow style tweaks

This commit is contained in:
lilia 2015-08-31 15:11:00 -07:00
parent cc92cdfa29
commit 43aaf541c1
6 changed files with 23 additions and 16 deletions

View file

@ -28,9 +28,7 @@
window: options.window
});
this.recipients_view = new Whisper.RecipientsInputView({
placeholder: "Add member"
});
this.recipients_view = new Whisper.RecipientsInputView();
this.listenTo(this.recipients_view.typeahead, 'sync', function() {
this.model.contactCollection.models.forEach(function(model) {
if (this.recipients_view.typeahead.get(model)) {

View file

@ -97,7 +97,7 @@
},
render_attributes: function() {
return { placeholder: this.placeholder || "Name or phone number" };
return { placeholder: this.placeholder || "name or phone number" };
},
events: {