parent
9809894fd2
commit
90e9216e19
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* vim: ts=4:sw=4:expandtab
|
||||
*/
|
||||
(function () {
|
||||
'use strict';
|
||||
window.Whisper = window.Whisper || {};
|
||||
|
||||
Whisper.DebugLogView = Whisper.View.extend({
|
||||
templateName: 'debug-log',
|
||||
className: 'debug-log',
|
||||
initialize: function() {
|
||||
this.render();
|
||||
this.$('textarea').val(console.get());
|
||||
},
|
||||
events: {
|
||||
'submit': 'submit',
|
||||
'click .close': 'close'
|
||||
},
|
||||
close: function(e) {
|
||||
e.preventDefault();
|
||||
this.remove();
|
||||
},
|
||||
submit: function(e) {
|
||||
e.preventDefault();
|
||||
console.post(this.$('textarea').val()).then(function(url) {
|
||||
this.$el.removeClass('loading');
|
||||
var link = this.$('.result').show().find('a');
|
||||
link.attr('href', url).text(url);
|
||||
}.bind(this));
|
||||
this.$('form').remove();
|
||||
this.$el.addClass('loading');
|
||||
}
|
||||
});
|
||||
|
||||
})();
|
Loading…
Reference in New Issue