14 lines
487 B
JavaScript
14 lines
487 B
JavaScript
import ModalBodyView from "discourse/views/modal-body";
|
|
|
|
export default ModalBodyView.extend({
|
|
templateName: 'modal/avatar_selector',
|
|
classNames: ['avatar-selector'],
|
|
title: I18n.t('user.change_avatar.title'),
|
|
|
|
// *HACK* used to select the proper radio button, cause {{action}}
|
|
// stops the default behavior
|
|
selectedChanged: function() {
|
|
Em.run.next(() => $('input:radio[name="avatar"]').val([this.get('controller.selected')]) );
|
|
}.observes('controller.selected')
|
|
});
|