|
@@ -1,5 +1,5 @@
|
|
|
/**
|
|
|
- * Copyright (c) 2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
|
|
|
+ * Copyright (c) 2020-2022 mol* contributors, licensed under MIT, See LICENSE file for more info.
|
|
|
*
|
|
|
* @author David Sehnal <david.sehnal@gmail.com>
|
|
|
*/
|
|
@@ -25,6 +25,8 @@ import { DemoMoleculeSDF, DemoOrbitals } from './example-data';
|
|
|
import './index.html';
|
|
|
require('mol-plugin-ui/skin/light.scss');
|
|
|
|
|
|
+import { setDebugMode, setTimingMode } from '../../mol-util/debug';
|
|
|
+
|
|
|
interface DemoInput {
|
|
|
moleculeSdf: string,
|
|
|
basis: Basis,
|
|
@@ -222,4 +224,6 @@ export class AlphaOrbitalsExample {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-(window as any).AlphaOrbitalsExample = new AlphaOrbitalsExample();
|
|
|
+(window as any).AlphaOrbitalsExample = new AlphaOrbitalsExample();
|
|
|
+(window as any).AlphaOrbitalsExample.setDebugMode = setDebugMode;
|
|
|
+(window as any).AlphaOrbitalsExample.setTimingMode = setTimingMode;
|