|
|
@ -6,32 +6,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
|
|
|
|
|
|
|
|
var ErrorView = Backbone.View.extend({
|
|
|
|
var ErrorView = Whisper.View.extend({
|
|
|
|
className: 'error',
|
|
|
|
className: 'error',
|
|
|
|
initialize: function() {
|
|
|
|
templateName: 'generic-error',
|
|
|
|
this.template = $('#generic-error').html();
|
|
|
|
render_attributes: function() {
|
|
|
|
Mustache.parse(this.template);
|
|
|
|
return this.model;
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
|
|
|
|
this.$el.html(Mustache.render(this.template, this.model));
|
|
|
|
|
|
|
|
return this;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
var KeyConflictView = ErrorView.extend({
|
|
|
|
var KeyConflictView = ErrorView.extend({
|
|
|
|
className: 'key-conflict',
|
|
|
|
className: 'key-conflict',
|
|
|
|
|
|
|
|
templateName: 'key-conflict',
|
|
|
|
initialize: function(options) {
|
|
|
|
initialize: function(options) {
|
|
|
|
this.message = options.message;
|
|
|
|
this.message = options.message;
|
|
|
|
if (this.message.isIncoming()) {
|
|
|
|
|
|
|
|
this.template = $('#incoming-key-conflict').html();
|
|
|
|
|
|
|
|
} else if (this.message.isOutgoing()) {
|
|
|
|
|
|
|
|
this.template = $('#outgoing-key-conflict').html();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Mustache.parse(this.template);
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
events: {
|
|
|
|
events: {
|
|
|
|
'click': 'select'
|
|
|
|
'click': 'select'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
render_attributes: function() {
|
|
|
|
|
|
|
|
var errorMessage;
|
|
|
|
|
|
|
|
if (this.message.isIncoming()) {
|
|
|
|
|
|
|
|
errorMessage = 'incomingKeyConflict';
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
errorMessage = 'outgoingKeyConflict';
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return { message: i18n(errorMessage) };
|
|
|
|
|
|
|
|
},
|
|
|
|
select: function() {
|
|
|
|
select: function() {
|
|
|
|
this.$el.trigger('select', {message: this.message});
|
|
|
|
this.$el.trigger('select', {message: this.message});
|
|
|
|
},
|
|
|
|
},
|
|
|
|