You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
581 B

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. "use strict";
  2. //Show a big banner in the top of the page if the company has been
  3. //changed in another tab or window (in the same browser)
  4. var con = [];
  5. var lastCtx = null;
  6. addEventListener("connect", function(ee) {
  7. var port = ee.ports[0];
  8. con.push(port);
  9. port.onmessage = function (e) {
  10. var newCtx = e.data;
  11. if (lastCtx && newCtx !== lastCtx) {
  12. con.forEach(function (eport) {
  13. eport.postMessage({type: "newCtx", "newCtx": newCtx, "lastCtx": lastCtx});
  14. });
  15. }
  16. lastCtx = newCtx;
  17. };
  18. }, false);