f940676357
Fixes #697 // FREEBIE
47 lines
1.4 KiB
JavaScript
47 lines
1.4 KiB
JavaScript
/*
|
|
* vim: ts=4:sw=4:expandtab
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
Whisper.DebugLogView = Whisper.View.extend({
|
|
templateName: 'debug-log',
|
|
className: 'debug-log modal',
|
|
initialize: function() {
|
|
this.render();
|
|
this.$('textarea').val(console.get());
|
|
},
|
|
events: {
|
|
'click .submit': 'submit',
|
|
'click .close': 'close'
|
|
},
|
|
render_attributes: {
|
|
title: i18n('submitDebugLog'),
|
|
cancel: i18n('cancel'),
|
|
submit: i18n('submit'),
|
|
close: i18n('gotIt'),
|
|
debugLogExplanation: i18n('debugLogExplanation')
|
|
},
|
|
close: function(e) {
|
|
e.preventDefault();
|
|
this.remove();
|
|
},
|
|
submit: function(e) {
|
|
e.preventDefault();
|
|
var log = this.$('textarea').val();
|
|
if (log.length === 0) {
|
|
return;
|
|
}
|
|
console.post(log).then(function(url) {
|
|
this.$('.loading').removeClass('loading');
|
|
var link = this.$('.result').find('a');
|
|
link.attr('href', url).text(url);
|
|
this.$('.result .hide').removeClass('hide');
|
|
}.bind(this));
|
|
this.$('.buttons, textarea').remove();
|
|
this.$('.result').addClass('loading');
|
|
}
|
|
});
|
|
|
|
})();
|