mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
BUGFIX: unbind the file uploader when closing the composer
This commit is contained in:
parent
58202baa62
commit
c4cfd5a7fe
@ -258,13 +258,9 @@ Discourse.ComposerView = Discourse.View.extend(Ember.Evented, {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// In case it's still bound somehow
|
|
||||||
$uploadTarget.fileupload('destroy');
|
|
||||||
$uploadTarget.off();
|
|
||||||
|
|
||||||
$uploadTarget.fileupload({
|
$uploadTarget.fileupload({
|
||||||
url: Discourse.getURL('/uploads'),
|
url: Discourse.getURL('/uploads'),
|
||||||
dataType: 'json'
|
dataType: 'json'
|
||||||
});
|
});
|
||||||
|
|
||||||
// submit - this event is triggered for each upload
|
// submit - this event is triggered for each upload
|
||||||
@ -359,6 +355,12 @@ Discourse.ComposerView = Discourse.View.extend(Ember.Evented, {
|
|||||||
return this.initEditor();
|
return this.initEditor();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
childWillDestroyElement: function() {
|
||||||
|
var $uploadTarget = $('#reply-control');
|
||||||
|
$uploadTarget.fileupload('destroy');
|
||||||
|
$uploadTarget.off();
|
||||||
|
},
|
||||||
|
|
||||||
toggleAdminOptions: function() {
|
toggleAdminOptions: function() {
|
||||||
var $adminOpts = $('.admin-options-form'),
|
var $adminOpts = $('.admin-options-form'),
|
||||||
$wmd = $('.wmd-controls'),
|
$wmd = $('.wmd-controls'),
|
||||||
@ -419,6 +421,10 @@ Discourse.NotifyingTextArea = Ember.TextArea.extend({
|
|||||||
|
|
||||||
didInsertElement: function() {
|
didInsertElement: function() {
|
||||||
return this.get('parent').childDidInsertElement(this);
|
return this.get('parent').childDidInsertElement(this);
|
||||||
|
},
|
||||||
|
|
||||||
|
willDestroyElement: function() {
|
||||||
|
return this.get('parent').childWillDestroyElement(this);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user