You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 15, 2018. It is now read-only.
In IE11, this.get('closeSrc') initiates a request to /undefined.
Setting it in config while creating new instance of infobubble doesn't make any difference.
The text was updated successfully, but these errors were encountered:
The problem is that setValues is called after buildDom_ in the constructor. Reversing the order doesn't work either, because it fires change callbacks for properties where the DOM is expected to already exist.
Adding:
this.set('closeSrc',options['closeSrc']);
before the buildDom_ call in the ctor gets rid of the problem, but it seems a bit hacky.
In IE11, this.get('closeSrc') initiates a request to /undefined.
Setting it in config while creating new instance of infobubble doesn't make any difference.
The text was updated successfully, but these errors were encountered: