Remove unneeded var, add todo
This commit is contained in:
parent
fc3a600e72
commit
eae072e72d
1 changed files with 4 additions and 2 deletions
|
@ -18,7 +18,9 @@
|
|||
|
||||
window.Whisper = window.Whisper || {};
|
||||
|
||||
var Conversation = Whisper.Conversation = Backbone.Model.extend({
|
||||
// TODO: Factor out private and group subclasses of Conversation
|
||||
|
||||
Whisper.Conversation = Backbone.Model.extend({
|
||||
database: Whisper.Database,
|
||||
storeName: 'conversations',
|
||||
defaults: function() {
|
||||
|
@ -153,7 +155,7 @@
|
|||
Whisper.ConversationCollection = Backbone.Collection.extend({
|
||||
database: Whisper.Database,
|
||||
storeName: 'conversations',
|
||||
model: Conversation,
|
||||
model: Whisper.Conversation,
|
||||
|
||||
comparator: function(m) {
|
||||
return -m.get('timestamp');
|
||||
|
|
Loading…
Reference in a new issue