FS-8260 #resolve [verto_communicator] prompt banner text

This commit is contained in:
Stefan Yohansson 2015-09-30 18:48:45 -03:00
parent c5fc397a51
commit 0e125afa03
1 changed files with 11 additions and 2 deletions

View File

@ -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) {