12345678910111213141516171819202122232425262728293031 |
- 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.destroy = function () {
- }
- return this
- }
- })
|