Sebastian Bittrich 1 년 전
부모
커밋
d60c5c33a9
2개의 변경된 파일4개의 추가작업 그리고 18개의 파일을 삭제
  1. 2 6
      src/viewer/index.ts
  2. 2 12
      src/viewer/ligand.html

+ 2 - 6
src/viewer/index.ts

@@ -527,12 +527,8 @@ export class LigandViewer {
         }
     }
 
-    async loadLigandFromUrl(url: string, format: BuiltInTrajectoryFormat, isBinary: boolean) {
-        await this.load({ fileOrUrl: url, format, isBinary });
-    }
-
     private async load(p: LoadParams) {
-        await this.customState.modelLoader.load<any, any>(p, undefined, undefined, ChemicalCompontentTrajectoryHierarchyPreset, { shownCoordinateType: this.customState.shownCoordinateType, representationPresetParams: { theme: { carbonColor: 'element-symbol' } } });
+        await this.customState.modelLoader.load<any, any>(p, undefined, undefined, ChemicalCompontentTrajectoryHierarchyPreset, { shownCoordinateType: this.customState.shownCoordinateType });
         await this.syncHydrogenState();
 
         for (const s of this._plugin.managers.structure.hierarchy.current.structures) {
@@ -543,7 +539,7 @@ export class LigandViewer {
         }
     }
 
-    async toggleHydrogen() {
+    async toggleHydrogens() {
         this.customState.ignoreHydrogens = !this.customState.ignoreHydrogens;
         await this.syncHydrogenState();
     }

+ 2 - 12
src/viewer/ligand.html

@@ -59,11 +59,11 @@
 
     &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 
-    <button style="padding: 3px;" onclick="toggleHydrogen()">Hydrogen</button>
+    <button style="padding: 3px;" onclick="viewer.toggleHydrogens()">Hydrogen</button>
 
     &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 
-    <button style="padding: 3px;" onclick="toggleLabels()">Labels</button>
+    <button style="padding: 3px;" onclick="viewer.toggleLabels()">Labels</button>
 </div>
 <script>
 
@@ -158,16 +158,6 @@
         Object.assign(option, { text: '[' + e.id + '] ' + e.info, value: i })
         examplesSelect.appendChild(option)
     }
-
-    //
-
-    function toggleHydrogen() {
-        viewer.toggleHydrogen();
-    }
-
-    function toggleLabels() {
-        viewer.toggleLabels();
-    }
 </script>
 </body>
 </html>