mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-25 15:47:55 +01:00
Fix bug on class migration on constructor
This commit is contained in:
parent
a10b41ee4d
commit
0b5b03691b
@ -19,14 +19,9 @@
|
||||
// FIXME: this Class should be reimplemented
|
||||
import Events from '../Events';
|
||||
|
||||
class FadeEffect extends Events {/** @lends FadeEffect */
|
||||
/**
|
||||
* @extends mindplot.Events
|
||||
* @constructs
|
||||
* @param elements
|
||||
* @param isVisible
|
||||
*/
|
||||
initialize(elements, isVisible) {
|
||||
class FadeEffect extends Events {
|
||||
constructor(elements, isVisible) {
|
||||
super();
|
||||
this._isVisible = isVisible;
|
||||
this._element = elements;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user