diff --git a/js/public/app.js b/js/public/app.js index 78e5d80..18f0420 100644 --- a/js/public/app.js +++ b/js/public/app.js @@ -23,6 +23,7 @@ function emptyStr (obj) { app.controller('WeatherController', ['$scope', '$interval', '$timeout', '$compile', '$http', function ($scope, $interval, $timeout, $compile, $http) { + $scope.owncloudAppImgPath = ''; $scope.userId = ''; $scope.cities = []; $scope.showAddCity = false; @@ -31,6 +32,7 @@ app.controller('WeatherController', ['$scope', '$interval', '$timeout', '$compil $scope.cityLoadError = ''; $scope.currentCity = null; $scope.domCity = null; + $scope.homeCity = ''; $scope.imageMapper = { "Clear": "sun.png", @@ -50,6 +52,8 @@ app.controller('WeatherController', ['$scope', '$interval', '$timeout', '$compil }, 60000); $timeout(function () { + var imgPath = OC.generateUrl('/apps/weather').replace('index.php/',''); + $scope.owncloudAppImgPath = imgPath; $scope.loadCities(); }); diff --git a/templates/main.php b/templates/main.php index fce01a7..1889cb7 100644 --- a/templates/main.php +++ b/templates/main.php @@ -30,7 +30,7 @@