meshviewer/lib/title.js

41 lines
773 B
JavaScript
Raw Normal View History

2015-04-05 21:44:43 +00:00
define(function () {
'use strict';
2016-05-27 21:59:01 +00:00
return function (config) {
2015-04-05 21:44:43 +00:00
function setTitle(d) {
var title = [config.siteName];
2015-04-05 21:44:43 +00:00
if (d !== undefined) {
title.push(d);
}
2015-04-05 21:44:43 +00:00
document.title = title.join(': ');
2015-04-05 21:44:43 +00:00
}
this.resetView = function resetView() {
setTitle();
};
2015-04-05 21:44:43 +00:00
this.gotoNode = function gotoNode(d) {
if (d) {
setTitle(d.nodeinfo.hostname);
}
};
2015-04-05 21:44:43 +00:00
this.gotoLink = function gotoLink(d) {
if (d) {
setTitle((d.source.node ? d.source.node.nodeinfo.hostname : d.source.id) + ' ' + d.target.node.nodeinfo.hostname);
}
};
2015-04-05 21:44:43 +00:00
this.gotoLocation = function gotoLocation() {
// ignore
};
this.destroy = function destroy() {
};
2015-04-05 21:44:43 +00:00
return this;
};
});