hopglass/lib/title.js

36 lines
635 B
JavaScript
Raw Normal View History

2015-04-05 23:44:43 +02:00
define(function () {
return function (config) {
function setTitle(d) {
var title = [config.siteName]
if (d !== undefined)
title.push(d)
document.title = title.join(": ")
}
this.resetView = function () {
setTitle()
}
this.gotoNode = function (d) {
if (d)
setTitle(d.nodeinfo.hostname)
}
this.gotoLink = function (d) {
if (d)
setTitle(d.source.node.nodeinfo.hostname + " " + d.target.node.nodeinfo.hostname)
}
this.gotoLocation = function() {
//ignore
}
2015-04-05 23:44:43 +02:00
this.destroy = function () {
}
return this
}
})