Skip to content

Commit 4bcca19

Browse files
committed
Merge commit 'refs/pull/3590/head' of github.com:domoticz/domoticz into development
2 parents da88d49 + a5a12a2 commit 4bcca19

12 files changed

+456
-372
lines changed

www/app/DashboardController.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
define(['app'], function (app) {
2-
app.controller('DashboardController', function ($scope, $rootScope, $location, $http, $interval, $window, $route, $routeParams, permissions) {
1+
define(['app', 'livesocket'], function (app) {
2+
app.controller('DashboardController', function ($scope, $rootScope, $location, $http, $interval, $window, $route, $routeParams, permissions, livesocket) {
33
var $element = $('#main-view #dashcontent').last();
44

55
$scope.LastUpdateTime = parseInt(0);

www/app/LightsController.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
define(['app'], function (app) {
2-
app.controller('LightsController', function ($scope, $rootScope, $location, $http, $interval, $route, $routeParams, permissions) {
1+
define(['app', 'livesocket'], function (app) {
2+
app.controller('LightsController', function ($scope, $rootScope, $location, $http, $interval, $route, $routeParams, permissions, livesocket) {
33
var $element = $('#main-view #lightcontent').last();
44

55
$scope.HasInitializedAddManualDialog = false;

www/app/ScenesController.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
define(['app'], function (app) {
2-
app.controller('ScenesController', ['$scope', '$rootScope', '$location', '$http', '$interval', 'permissions', function ($scope, $rootScope, $location, $http, $interval, permissions) {
1+
define(['app', 'livesocket'], function (app) {
2+
app.controller('ScenesController', ['$scope', '$rootScope', '$location', '$http', '$interval', 'permissions', function ($scope, $rootScope, $location, $http, $interval, permissions, livesocket) {
33

44
var SceneIdx = 0;
55

www/app/TemperatureController.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
define(['app'], function (app) {
2-
app.controller('TemperatureController', function ($scope, $rootScope, $location, $http, $interval, $window, $route, $routeParams, permissions) {
1+
define(['app', 'livesocket'], function (app) {
2+
app.controller('TemperatureController', function ($scope, $rootScope, $location, $http, $interval, $window, $route, $routeParams, permissions, livesocket) {
33
var $element = $('#main-view #tempcontent').last();
44

55
var ctrl = this;

0 commit comments

Comments
 (0)