提交 0e125afa authored 作者: Stefan Yohansson's avatar Stefan Yohansson

FS-8260 #resolve [verto_communicator] prompt banner text

上级 c5fc397a
......@@ -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) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论