You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JavaScript
		
	
| /*
 | |
|  * vim: ts=4:sw=4:expandtab
 | |
|  */
 | |
| (function () {
 | |
|     'use strict';
 | |
| 
 | |
|     window.Whisper = window.Whisper || {};
 | |
| 
 | |
|     Whisper.KeyConflictDialogueView = Whisper.View.extend({
 | |
|         className: 'key-conflict-dialogue clearfix',
 | |
|         templateName: 'key-conflict-dialogue',
 | |
|         initialize: function(options) {
 | |
|             this.conversation = options.conversation;
 | |
|         },
 | |
|         events: {
 | |
|             'click .verify': 'triggerVerify',
 | |
|             'click .resolve': 'resolve'
 | |
|         },
 | |
|         triggerVerify: function() {
 | |
|             this.trigger('verify', {identityKey: this.model.identityKey});
 | |
|         },
 | |
|         resolve: function() {
 | |
|             this.trigger('resolve');
 | |
|             this.remove();
 | |
|             this.conversation.resolveConflicts(this.model);
 | |
|         },
 | |
|         render_attributes: function() {
 | |
|             return {
 | |
|                 message: i18n('identityChanged'),
 | |
|                 resolve: i18n('acceptNewKey'),
 | |
|                 verifyContact: i18n('verifyContact')
 | |
|             };
 | |
|         }
 | |
|     });
 | |
| })();
 |