mirror of
https://github.com/flarum/core.git
synced 2025-01-18 06:38:25 +01:00
Work around Mithril bug
This commit is contained in:
parent
59d8d63acd
commit
a5b2a3da03
@ -1,4 +1,5 @@
|
||||
{
|
||||
"name": "flarum",
|
||||
"dependencies": {
|
||||
"jquery": "2.1.3",
|
||||
"jquery.hotkeys": "jeresig/jquery.hotkeys#0.2.0",
|
||||
@ -6,7 +7,7 @@
|
||||
"spin.js": "~2.0.1",
|
||||
"moment": "~2.8.4",
|
||||
"color-thief": "v2.0",
|
||||
"mithril": "0.2.0",
|
||||
"mithril": "lhorie/mithril.js#next",
|
||||
"loader.js": "~3.2.1"
|
||||
}
|
||||
}
|
||||
|
@ -228,7 +228,8 @@ class Composer extends Component {
|
||||
if ([Composer.PositionEnum.MINIMIZED, Composer.PositionEnum.HIDDEN].indexOf(this.position()) !== -1) {
|
||||
this.position(Composer.PositionEnum.NORMAL);
|
||||
}
|
||||
this.render();
|
||||
// work around https://github.com/lhorie/mithril.js/issues/603
|
||||
setTimeout(() => this.render());
|
||||
}
|
||||
|
||||
hide() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user