Merge pull request #524 in FS/freeswitch from ~STEFAN_YOHANSSON/freeswitch:bugfix/FS-8260-prompt-for-banner-text to master

* commit '0e125afa03570cee2b2f06c17389133a6fa618c2':
  FS-8260 #resolve [verto_communicator] prompt banner text
This commit is contained in:
Ken Rice 2015-09-30 16:50:29 -05:00
commit 1193766810
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) {