Skip to content
Snippets Groups Projects
Select Git revision
  • v2.20.1
  • master default protected
  • Issue/22-unifySearchResultsAcrossLanguageSettings
  • dev protected
  • Issue/3241-OptionToViewAndSelectFromAllVersions
  • Issue/3195-restrictSelectionOfTargetClassToActualClasses
  • Issue/2743-jumpDirectlyToNewTerm
  • Issue/3199-changeDelayCodeEditor
  • Issue/3166-changeDefaultFilenameForDownloads
  • Issue/2996-cosmeticChangesToAims
  • Issue/3006-changeApplicationProfileToMetadataProfile
  • Issue/3057-fix404InAims
  • Issue/3000-fixRemovingOfApInAims
  • Issue/2315-improveErrorCommunication
  • Hotfix/2957-styleAndUpgrade
  • Issue/2943-uiFeedback
  • Issue/2599-vue3Migration
  • Issue/xxxx-qualifiedShapeRedo
  • Issue/2779-correctFallback
  • Issue/2759-showMissingField
  • Issue/2703-vocabularyList
  • v3.1.2
  • v3.1.1
  • v3.1.0
  • v3.0.8
  • v3.0.7
  • v3.0.6
  • v3.0.5
  • v3.0.4
  • v3.0.3
  • v3.0.2
  • v3.0.1
  • v3.0.0
  • v2.23.0
  • v2.22.1
  • v2.22.0
  • v2.21.0
  • v2.20.0
  • v2.19.6
  • v2.19.5
40 results

index.html

Blame
  • Benedikt Heinrichs's avatar
    Benedikt Heinrichs authored and Petar Hristov committed
    f36d2de9
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    index.html 993 B
    <!DOCTYPE html>
    <html lang="">
      <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width,initial-scale=1.0">
        <link rel="icon" href="/favicon.ico">
        <title>AIMS</title>
        <script>
          function uuidv4() {
            return ([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g, c =>
              (c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> c / 4).toString(16)
            );
          }
    
          window.coscine = {
            authorization: {
              bearer: '',
            },
            clientcorrolation: {
              id: uuidv4(),
            },
          };
    
          window.global = window;
          var global = window;
        </script>
      </head>
      <body>
        <noscript>
          <strong>We're sorry but the AIMS frontend doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
        </noscript>
        <div id="app"></div>
        <script type="module" src="./src/main.ts"></script>
      </body>
    </html>