Fix panel switch between error & working
parent
96bd17cf4f
commit
3e6f50e575
|
@ -211,6 +211,7 @@ app.controller('WeatherController', ['$scope', '$interval', '$timeout', '$compil
|
|||
else if ($scope.currentCity.wind.deg > 288 && $scope.currentCity.wind.deg < 334) {
|
||||
$scope.currentCity.wind.desc = "North-West";
|
||||
}
|
||||
$scope.cityLoadError = '';
|
||||
}
|
||||
else {
|
||||
$scope.cityLoadError = 'Failed to get city weather informations. Please contact your administrator';
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<div id="city-right" ng-show="cityLoadError != ''">
|
||||
<span class="city-load-error">{{ cityLoadError }}</span>
|
||||
</div>
|
||||
<div id="city-right" ng-show="currentCity != null" style="background-image: url('{{ owncloudAppImgPath }}/img/{{ currentCity.image }}');">
|
||||
<div id="city-right" ng-show="cityLoadError == '' && currentCity != null" style="background-image: url('{{ owncloudAppImgPath }}/img/{{ currentCity.image }}');">
|
||||
<div id="city-weather-panel">
|
||||
<div class="city-name">
|
||||
{{ currentCity.name }}, {{ currentCity.sys.country }}
|
||||
|
|
Loading…
Reference in New Issue