mirror of
https://github.com/flarum/framework.git
synced 2025-05-23 23:29:57 +08:00
Work around Mithril bug
This commit is contained in:
@ -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() {
|
||||
|
Reference in New Issue
Block a user