We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43d99f4 commit eb0c6b6Copy full SHA for eb0c6b6
projects/plotly/src/lib/plotly.theme-loader.service.ts
@@ -13,10 +13,10 @@ export class PlotlyThemeLoaderService {
13
public load(themeName: PlotlyTheme): Promise<any> {
14
this._isLoading = true;
15
return new Promise(resolve => {
16
- import(`./themes/${themeName}.json`).then(data => {
17
- resolve(data);
18
- this._isLoading = false;
19
- });
+ // import(`./themes/${themeName}.json`).then(data => {
+ resolve(true);
+ // this._isLoading = false;
+ // });
20
});
21
}
22
0 commit comments