'use strict'; /* global window: false */ // Taken from background.html. // Templates are here solely to support the Backbone views rendered in the Style Guide. // Note: Any change here must be reflected in background.html to be reflected in the app // and test/index.html to be reflected in the unit tests. window.Whisper.View.Templates = { hasRetry: ` {{ messageNotSent }} {{ resend }} `, 'some-failed': ` {{ someFailed }} `, keychange: ` {{ content }} `, 'verified-change': ` {{ content }} `, message: ` {{> avatar }}
{{ sender }} {{ #profileName }} {{ profileName }} {{ /profileName }}
{{ #hasAttachments }}
{{ /hasAttachments }} {{ #hasBody }}
{{ #message }}
{{ /message }}
{{ /hasBody }}
{{ #hoverIcon }} {{ /hoverIcon }}
`, hourglass: ` `, expirationTimerUpdate: ` {{ content }} `, 'file-view': `
{{ fileName }}
{{ fileSize }}
`, 'error-icon': ` {{ #message }} {{message}} {{ /message }} `, };