All Downloads are FREE. Search and download functionalities are using the official Maven repository.

webapp.scripts.modules.radiator-navigation.js Maven / Gradle / Ivy

The newest version!
Box.Application.addModule('radiator-navigation', function(context) {
  'use strict';

  var $, host, windowService, session;

  return {
    behaviors: [ "navigation-common" ],

    init: function() {
      $ = context.getGlobal("jQuery");
      session = context.getGlobal("session");
      windowService = context.getService("window");
      host = windowService.getHashVariable("host");
      if (session.isAdmin) {
        $(".shape-navterminal").attr("data-host", host);
      } else {
        $(".shape-navterminal").remove();
      }
    }
  };
});




© 2015 - 2025 Weber Informatics LLC | Privacy Policy