![JAR search and dependency download from the Maven repository](/logo.png)
webapp.scripts.modules.radiator-navigation.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of willow-servers Show documentation
Show all versions of willow-servers Show documentation
Willow operational servlets and servers
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