19201: add warning when users are viewing documentation for old Arvados
[arvados.git] / doc / _includes / _navbar_top.liquid
index c69a2efbec1eb5f9a76b7fc8aaa97fc411a93553..41fe70f03a86aaacd736ac18e95535516b62db2f 100644 (file)
@@ -49,6 +49,9 @@ SPDX-License-Identifier: CC-BY-SA-3.0
       </div>
     </div>
 
+   <div class="alert alert-block alert-info" style="display: none;" id="old-version-warning">
+     WARNING - you are viewing the documentation for an old version of Arvados. For the latest version, click <a href="/">here</a>.
+   </div>
    <div class="alert alert-block alert-info" style="display: none;" id="annotate-notify">
      <div style="margin-top: -26px; font-size: 12pt">Hey!  You can use the annotation sidebar from <a href="https://hypothes.is">hypothes.is</a> to make public comments and private notes
        <span style="font-size: 32pt">&rarr;</span></div>
@@ -57,10 +60,10 @@ SPDX-License-Identifier: CC-BY-SA-3.0
 
    <script>
      function dismissAnnotateNotify() {
-        window.sessionStorage.setItem("dismiss-annotate-notify", "true");
+        window.localStorage.setItem("dismiss-annotate-notify", "true");
          $('#annotate-notify').attr('style', "display: none;");
      }
-     if (window.sessionStorage.getItem("dismiss-annotate-notify") === "true") {
+     if (window.localStorage.getItem("dismiss-annotate-notify") === "true") {
         dismissAnnotateNotify();
      } else {
          $('#annotate-notify').attr('style', "display: inline-block;");