Skip to content

Commit a8c26ee

Browse files
authored
Merge pull request #2775 from eiaro/darksky#2726
Fix: DarkSky url fixed.
2 parents 8b4174c + 994839d commit a8c26ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

www/app/ForecastController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ define(['app'], function (app) {
55
function init() {
66
$scope.MakeGlobalConfig();
77
var htmlcontent = '';
8-
htmlcontent += '<iframe class="cIFrameLarge" id="IMain" src="//darksky.net/#/f/' + $scope.config.Latitude + ',' + $scope.config.Longitude + '"></iframe>';
8+
htmlcontent += '<iframe class="cIFrameLarge" id="IMain" src="//darksky.net/forecast/' + $scope.config.Latitude + ',' + $scope.config.Longitude + '"></iframe>';
99
$('#maincontent').html(htmlcontent);
1010
$('#maincontent').i18n();
1111
};

0 commit comments

Comments
 (0)