mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-24 23:44:09 -05:00
FIX: users on ie/safari were unable to disable mailing list mode
This commit is contained in:
parent
0adaa8d362
commit
a544990f81
1 changed files with 2 additions and 2 deletions
|
@ -5,10 +5,10 @@ export default Em.Component.extend({
|
||||||
return I18n.t(this.get('labelKey'));
|
return I18n.t(this.get('labelKey'));
|
||||||
}.property('labelKey'),
|
}.property('labelKey'),
|
||||||
|
|
||||||
click() {
|
change() {
|
||||||
const warning = this.get('warning');
|
const warning = this.get('warning');
|
||||||
|
|
||||||
if (warning && !this.get('checked')) {
|
if (warning && this.get('checked')) {
|
||||||
this.sendAction('warning');
|
this.sendAction('warning');
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue