forked from matrix/element-web
export enum via method for convenience from matrix-react-sdk
This commit is contained in:
parent
be34c84704
commit
3d20a64502
|
@ -39,7 +39,7 @@ export default class VectorBasePlatform extends BasePlatform {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
// The 'animations' are really low framerate and look terrible.
|
// The 'animations' are really low framerate and look terrible.
|
||||||
// Also it re-starts the animationb every time you set the badge,
|
// Also it re-starts the animation every time you set the badge,
|
||||||
// and we set the state each time, even if the value hasn't changed,
|
// and we set the state each time, even if the value hasn't changed,
|
||||||
// so we'd need to fix that if enabling the animation.
|
// so we'd need to fix that if enabling the animation.
|
||||||
this.favicon = new Favico({animation: 'none'});
|
this.favicon = new Favico({animation: 'none'});
|
||||||
|
@ -117,6 +117,10 @@ export default class VectorBasePlatform extends BasePlatform {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getUpdateCheckStatusEnum() {
|
||||||
|
return updateCheckStatusEnum;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Update the currently running app to the latest available
|
* Update the currently running app to the latest available
|
||||||
* version and replace this instance of the app with the
|
* version and replace this instance of the app with the
|
||||||
|
|
Loading…
Reference in New Issue