anarche
anarche

Reputation: 536

Change neo4j browser title

Is it possible to change the default browser title for Neo4j?

We run multiple instances and the current browser title (userID@bolt://ip-address:port) is not very useful - we'd like to say stuff like userID@Neo4j-Dev, etc.

Upvotes: 1

Views: 110

Answers (2)

Tom Geudens
Tom Geudens

Reputation: 2666

Why not roll your own ? The browser is a separate github project that can be found at https://github.com/neo4j/neo4j-browser (comes with build instructions), and I believe you are looking to modify the files underneath src/browser/modules/DocTitle.

Hope this helps,

Regards, Tom

Upvotes: 1

Bruno Peres
Bruno Peres

Reputation: 16373

I believe that is not possible change the default title of Neo4j browser. But as a workaround (not very elegant, i know :) you can open the console of your browser and type:

document.title = "My custom title";

The browser title will be updated.

Upvotes: 1

Related Questions