From ygrego@users.nuiton.org Thu Jun 18 13:26:52 2015 From: ygrego@users.nuiton.org To: sandbox-commits@list.nuiton.org Subject: [Sandbox-commits] r1750 - in oipf/emulator: js/contollers js/services view Date: Thu, 18 Jun 2015 13:26:52 +0000 Message-ID: <20150618132652.860745CA607@goh.codelutin.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0914397628846074961==" --===============0914397628846074961== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Author: ygrego Date: 2015-06-18 13:26:51 +0000 (Thu, 18 Jun 2015) New Revision: 1750 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1750 Log: Permit the access to the Service class. Modified: oipf/emulator/js/contollers/RemoteControlControllers.js oipf/emulator/js/services/OIPFServices.js oipf/emulator/view/index.html Modified: oipf/emulator/js/contollers/RemoteControlControllers.js =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- oipf/emulator/js/contollers/RemoteControlControllers.js 2015-06-18 13:18:= 45 UTC (rev 1749) +++ oipf/emulator/js/contollers/RemoteControlControllers.js 2015-06-18 13:26:= 51 UTC (rev 1750) @@ -111,8 +111,10 @@ }]); =20 RemoteControlControllers.controller("VideoBroadcastController", - ["$rootScope", "$scope", "$timeout", function($rootScope, $scope, $timeo= ut) { + ["$rootScope", "$scope", "$timeout", "VideoBroadcastService", function($= rootScope, $scope, $timeout, VideoBroadcastService) { =20 + $scope.videoBroadcastService =3D VideoBroadcastService; + $scope.currentVolume =3D 50; $rootScope.channelInfo =3D false; =20 Modified: oipf/emulator/js/services/OIPFServices.js =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- oipf/emulator/js/services/OIPFServices.js 2015-06-18 13:18:45 UTC (rev 17= 49) +++ oipf/emulator/js/services/OIPFServices.js 2015-06-18 13:26:51 UTC (rev 17= 50) @@ -15,3 +15,9 @@ OIPFServices.factory("RecordingSchedulerService", function() { return oipfObjectFactory.createRecordingSchedulerObject(); }); + +OIPFServices.factory("VideoBroadcastService", function() { + return new Service(); +}); + + Modified: oipf/emulator/view/index.html =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- oipf/emulator/view/index.html 2015-06-18 13:18:45 UTC (rev 1749) +++ oipf/emulator/view/index.html 2015-06-18 13:26:51 UTC (rev 1750) @@ -15,6 +15,7 @@ + --===============0914397628846074961==--