Skip to content

Commit

Permalink
Merge pull request #46 from DavidLevinsky/master
Browse files Browse the repository at this point in the history
Fixed search url
  • Loading branch information
davidmtech authored May 22, 2017
2 parents 5a5f7ca + 0878b56 commit 876fb69
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vts-browser-js",
"version": "2.4.1",
"version": "2.4.2",
"description": "JavaScript WebGL 3D maps rendering engine",
"main": "src/browser/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/browser/ui/control/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ var UIControlSearch = function(ui, visible) {

this.ignoreDrag = false;

this.urlTemplate = 'http://n1.windyty.com/search.php?q={value}&format=json&lang=en-US&addressdetails=1&limit=20';
this.urlTemplate = '//n1.windyty.com/search.php?q={value}&format=json&lang=en-US&addressdetails=1&limit=20';
this.urlTemplate2 = this.urlTemplate;
this.data = [];
this.lastSearch = '';
Expand Down
2 changes: 1 addition & 1 deletion src/core/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ string getCoreVersion()
*/

function getCoreVersion(full) {
return (full ? 'Core: ' : '') + '2.4.1';
return (full ? 'Core: ' : '') + '2.4.2';
}


Expand Down

0 comments on commit 876fb69

Please sign in to comment.