mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 01:56:01 -05:00
FIX: The previous flag reason was selected when opening the modal.
This commit is contained in:
parent
e73c809836
commit
112b9f9c2a
2 changed files with 12 additions and 11 deletions
|
@ -9,6 +9,10 @@
|
|||
**/
|
||||
Discourse.FlagController = Discourse.ObjectController.extend(Discourse.ModalFunctionality, {
|
||||
|
||||
onShow: function() {
|
||||
this.set('selected', null);
|
||||
},
|
||||
|
||||
changePostActionType: function(action) {
|
||||
this.set('selected', action);
|
||||
},
|
||||
|
|
|
@ -11,18 +11,15 @@ Discourse.FlagView = Discourse.ModalBodyView.extend({
|
|||
title: I18n.t('flagging.title'),
|
||||
|
||||
selectedChanged: function() {
|
||||
var nameKey = this.get('controller.selected.name_key');
|
||||
if (!nameKey) return;
|
||||
var flagView = this;
|
||||
Em.run.next(function() {
|
||||
$('#radio_' + nameKey).prop('checked', 'true');
|
||||
flagView.$("input[type='radio']").prop('checked', false);
|
||||
|
||||
var nameKey = flagView.get('controller.selected.name_key');
|
||||
if (!nameKey) return;
|
||||
|
||||
flagView.$('#radio_' + nameKey).prop('checked', 'true');
|
||||
});
|
||||
}.observes('controller.selected.name_key'),
|
||||
}.observes('controller.selected.name_key')
|
||||
|
||||
didInsertElement: function() {
|
||||
this._super();
|
||||
|
||||
// Would be nice if there were an EmberJs radio button to do this for us. Oh well, one should be coming
|
||||
// in an upcoming release.
|
||||
this.$("input[type='radio']").prop('checked', false);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue