Skip to content
Snippets Groups Projects
index.html 1.11 KiB
Newer Older
  • Learn to ignore specific revisions
  • <!DOCTYPE html>
    
      <head>
    
              let text = 'Error: Could not connect to openBIS.'
              let h2 = document.createElement('h2')
    
              var textnode = document.createTextNode(text)
              h2.appendChild(textnode)
    
              document.getElementById('error').appendChild(h2)
    
        <script
          src="/openbis/resources/api/v3/config.js"
          onerror="loadError()"
        ></script>
    
        <script src="/openbis/resources/api/v3/require.js"></script>
      </head>
    
        <div id="app"></div>
    
      </body>
    </html>