aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/assets/js/header_badges.js
blob: 13447229680d5eb2a27eda157526346ec0c169a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use strict";

(function () {
  // bases the header contents if it exists
  var header;

  header = document.getElementById("mJewelNav");

  if (header !== null) {
    if (typeof Frost !== "undefined" && Frost !== null) {
      Frost.handleHeader(header.outerHTML);
    }
  }
}).call(undefined);