How-to Change the Empty Super Tab Message ========================================= Help users by customizing the empty state of the Super tab. Set emptyHTML to HTML in the application config ----------------------------------------------- In `app.js`: :: var app = new gm3.Application({ ... serviceManager: { emptyHTML: 'This is now the empty text in the Super tab.', }, }); Set emptyHTML to an element's contents -------------------------------------- In your HTML file you can add a hidden element such as: :: And in `app.js`: :: var app = new gm3.Application({ ... serviceManager: { emptyHTML: '#empty-message', }, });