diff --git a/html5/verto/verto_communicator/src/vertoControllers/controllers/ChatController.js b/html5/verto/verto_communicator/src/vertoControllers/controllers/ChatController.js
index 2985ff4946..14943270f6 100644
--- a/html5/verto/verto_communicator/src/vertoControllers/controllers/ChatController.js
+++ b/html5/verto/verto_communicator/src/vertoControllers/controllers/ChatController.js
@@ -167,8 +167,17 @@
$scope.confBanner = function(memberID) {
console.log('$scope.confBanner');
- var text = 'New Banner';
- verto.data.conf.banner(memberID, text);
+
+ prompt({
+ title: 'Please insert the banner text',
+ input: true,
+ label: '',
+ value: '',
+ }).then(function(text) {
+ if (text) {
+ verto.data.conf.banner(memberID, text);
+ }
+ });
};
$scope.confVolumeDown = function(memberID) {