From 0a4347dbd063df448950cab7e5b6c4b035f08aec Mon Sep 17 00:00:00 2001
From: Ravi Srinivasan <rsriniva@users.noreply.github.com>
Date: Thu, 28 Feb 2019 15:00:35 +0100
Subject: [PATCH] trigger BP image refresh

---
 index.html |   17 +++++++++++++----
 1 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/index.html b/index.html
index 4af37fd..7921f34 100644
--- a/index.html
+++ b/index.html
@@ -3,7 +3,7 @@
 
 <head>
   <meta charset="UTF-8">
-  <title>Labs Readiness</title>
+  <title>DevOps Culture & Practice</title>
   <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
   <meta name="description" content="Training material for the Red Hat Open Innovation Labs">
   <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
@@ -15,21 +15,30 @@
   <div id="app"></div>
   <script>
     window.$docsify = {
-      name: 'Red Hat Open Innovation Labs Exercises',
-      repo: 'https://github.com/rht-labs/enablement-docs',
+      name: 'DevOps Culture & Practice Lab Exercises',
+      repo: 'https://github.com/RedHatTraining/rht-labs-docs',
       loadSidebar: true,
       subMaxLevel: 5,
       auto2top: true,
       search: 'auto',
+      notFoundPage: 'notThe404.md'
     }
   </script>
   <script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
   <script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
+  <script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
   <script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
   <script src="//unpkg.com/prismjs/components/prism-javascript.min.js"></script>
   <script src="//unpkg.com/prismjs/components/prism-groovy.min.js"></script>
   <script src="//unpkg.com/prismjs/components/prism-yaml.min.js"></script>
   <script src="//unpkg.com/prismjs/components/prism-json.min.js"></script>
+  <script>
+    // this didn't work cuz of CORS :(
+    function resizeIframeHack(iframe) {
+      // console.log(window.document.body.scrollHeight)
+      iframe.height = iframe.contentWindow.document.body.scrollHeight + "px";
+    }
+  </script>
 </body>
 
-</html>
\ No newline at end of file
+</html>

--
Gitblit v1.9.3