MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
Molmilに必要なJavaScriptを追加 |
外部JavaScriptファイルを読み込む設定を追加 |
||
Line 8: | Line 8: | ||
molmil.loadPDB(canvas.getAttribute("data-pdbid"), null, null, canvas.molmilViewer); // load the entry | molmil.loadPDB(canvas.getAttribute("data-pdbid"), null, null, canvas.molmilViewer); // load the entry | ||
} | } | ||
function loadScript(url) { | |||
var script = document.createElement('script'); | |||
script.type = 'text/javascript'; | |||
script.src = url; | |||
} | |||
loadScript('http://gjbekker.github.io/molmil/molmil.js'); |
Revision as of 06:42, 13 August 2020
/* Any JavaScript here will be loaded for all users on every page load. */ var molmil_settings = {src: "http://gjbekker.github.io/molmil/"}, canvas; function initViewer() { // wait until Molmil has been properly loaded if (! window.molmil.configBox || ! molmil.configBox.initFinished) {return setTimeout(initViewer, 100);} canvas = document.getElementById("molmilViewer"); canvas = molmil.createViewer(canvas); // initialize the canvas molmil.loadPDB(canvas.getAttribute("data-pdbid"), null, null, canvas.molmilViewer); // load the entry } function loadScript(url) { var script = document.createElement('script'); script.type = 'text/javascript'; script.src = url; } loadScript('http://gjbekker.github.io/molmil/molmil.js');