From: Stefan Yohansson Date: Thu, 1 Oct 2015 14:12:09 +0000 (-0300) Subject: FS-8263 #resolve [verto_communicator] created reset banner action X-Git-Tag: v1.6.3~1^2~71^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46b97a681cb3e7c13b6cf582f483294618250c8f;p=thirdparty%2Ffreeswitch.git FS-8263 #resolve [verto_communicator] created reset banner action --- diff --git a/html5/verto/verto_communicator/src/partials/chat.html b/html5/verto/verto_communicator/src/partials/chat.html index ebd9226438..3168e9d34a 100644 --- a/html5/verto/verto_communicator/src/partials/chat.html +++ b/html5/verto/verto_communicator/src/partials/chat.html @@ -65,6 +65,12 @@ Banner +
  • + + + Reset Banner + +
  • diff --git a/html5/verto/verto_communicator/src/vertoControllers/controllers/ChatController.js b/html5/verto/verto_communicator/src/vertoControllers/controllers/ChatController.js index 14943270f6..932e675402 100644 --- a/html5/verto/verto_communicator/src/vertoControllers/controllers/ChatController.js +++ b/html5/verto/verto_communicator/src/vertoControllers/controllers/ChatController.js @@ -180,6 +180,12 @@ }); }; + $scope.confResetBanner = function(memberID) { + console.log('$scope.confResetBanner'); + var text = 'reset'; + verto.data.conf.banner(memberID, text); + }; + $scope.confVolumeDown = function(memberID) { console.log('$scope.confVolumeDown'); verto.data.conf.volumeDown(memberID);