From 386e649f696f41a4ea22f4384609c55008ca3e8f Mon Sep 17 00:00:00 2001 From: Brandon Clayton <bclayton@usgs.gov> Date: Mon, 8 Apr 2024 11:59:20 -0600 Subject: [PATCH] set images --- src/main/resources/swagger/index.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/main/resources/swagger/index.js b/src/main/resources/swagger/index.js index 2a6fbfd..6a67c5b 100644 --- a/src/main/resources/swagger/index.js +++ b/src/main/resources/swagger/index.js @@ -16,8 +16,21 @@ window.onload = function() { }); window.ui = ui; + + setImage('logo-img', './drupal/images/logo.b64', 'src'); + setImage('banner-img', './uswds/img/us_flag_small.b64', 'src'); + setImage('icon', './favicon.b64', 'href'); }; +function setImage(id, path, attr) { + fetch(path) + .then(res => res.text()) + .then(text => { + const el = document.getElementById(id); + el.setAttribute(attr, text); + }); +} + function updateContextPath(contextPath) { return { statePlugins: { -- GitLab