Tweak contact style in typeahead
Remove message snippets and dates. Add checkboxes.
This commit is contained in:
parent
7bcceacf69
commit
c6a19afd29
5 changed files with 30 additions and 1 deletions
|
@ -32,6 +32,7 @@
|
||||||
</div>
|
</div>
|
||||||
</script>
|
</script>
|
||||||
<script type='text/x-tmpl-mustache' id='contact'>
|
<script type='text/x-tmpl-mustache' id='contact'>
|
||||||
|
<input type='checkbox' class='checkbox'></span>
|
||||||
<span class='avatar'></span>
|
<span class='avatar'></span>
|
||||||
<div class='contact-details'>
|
<div class='contact-details'>
|
||||||
<h3 class='contact-name'>
|
<h3 class='contact-name'>
|
||||||
|
|
|
@ -27,6 +27,7 @@ var Whisper = Whisper || {};
|
||||||
|
|
||||||
events: {
|
events: {
|
||||||
'click': 'open',
|
'click': 'open',
|
||||||
|
'click .checkbox': 'stopPropagation'
|
||||||
},
|
},
|
||||||
initialize: function() {
|
initialize: function() {
|
||||||
this.template = $('#contact').html();
|
this.template = $('#contact').html();
|
||||||
|
@ -42,6 +43,10 @@ var Whisper = Whisper || {};
|
||||||
bg.openConversation(this.model.id);
|
bg.openConversation(this.model.id);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
stopPropagation: function(e) {
|
||||||
|
e.stopPropagation();
|
||||||
|
},
|
||||||
|
|
||||||
render: function() {
|
render: function() {
|
||||||
this.$el.html(
|
this.$el.html(
|
||||||
Mustache.render(this.template, {
|
Mustache.render(this.template, {
|
||||||
|
|
|
@ -36,7 +36,8 @@
|
||||||
|
|
||||||
this.typeahead_collection = new typeahead();
|
this.typeahead_collection = new typeahead();
|
||||||
this.typeahead_view = new Whisper.ConversationListView({
|
this.typeahead_view = new Whisper.ConversationListView({
|
||||||
collection : new Whisper.ConversationCollection()
|
collection : new Whisper.ConversationCollection(),
|
||||||
|
className: 'typeahead'
|
||||||
});
|
});
|
||||||
this.typeahead_view.$el.hide().insertAfter(this.contacts);
|
this.typeahead_view.$el.hide().insertAfter(this.contacts);
|
||||||
this.typeahead_collection.fetch();
|
this.typeahead_collection.fetch();
|
||||||
|
|
|
@ -1,3 +1,17 @@
|
||||||
.gutter {
|
.gutter {
|
||||||
margin-top: 36px;
|
margin-top: 36px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.contact .checkbox {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.typeahead {
|
||||||
|
.last-message, .last-timestamp {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact .checkbox {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -1,6 +1,14 @@
|
||||||
.gutter {
|
.gutter {
|
||||||
margin-top: 36px; }
|
margin-top: 36px; }
|
||||||
|
|
||||||
|
.contact .checkbox {
|
||||||
|
display: none; }
|
||||||
|
|
||||||
|
.typeahead .last-message, .typeahead .last-timestamp {
|
||||||
|
display: none; }
|
||||||
|
.typeahead .contact .checkbox {
|
||||||
|
display: inline-block; }
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Roboto';
|
font-family: 'Roboto';
|
||||||
src: url("/fonts/Roboto-Regular.ttf") format("truetype"); }
|
src: url("/fonts/Roboto-Regular.ttf") format("truetype"); }
|
||||||
|
|
Loading…
Reference in a new issue