Merge pull request #14161 from CartoDB/fix-set-view

Improve zoom transitions from the +, - buttons
pull/14172/head
Jesús Arroyo Torrens 6 years ago committed by GitHub
commit 21da3b09f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -17,6 +17,7 @@ This release introduces a new API Key system. In order to migrate existing users
* New rake to fix inconsistent permissions (`bundle exec rake cartodb:permissions:fix_permission_acl`)
### Bug fixes / enhancements
* Use setView instead of flyTo to improve zoom transitions (https://github.com/CartoDB/carto.js/pull/2178)
* Fix torque layers when filter analysis is added (https://github.com/CartoDB/support/issues/1038)
* Copyright symbol not appearing on exported image (https://github.com/CartoDB/cartodb/issues/13411)
* Keep selected popup tab after fetch (https://github.com/CartoDB/support/issues/1396)

@ -45,7 +45,7 @@ module.exports = {
path.resolve(path.resolve('.'), 'lib/assets/javascripts/dashboard'),
path.resolve(path.resolve('.'), 'lib/assets/test/spec/dashboard'),
path.resolve(path.resolve('.'), 'lib/assets/test/spec/fixtures'),
path.resolve(path.resolve('.'), 'lib/assets/javascripts/dashboard')
path.resolve(path.resolve('.'), 'node_modules/internal-carto.js')
],
options: {
presets: [

22
npm-shrinkwrap.json generated

@ -3,9 +3,9 @@
"version": "4.12.57",
"dependencies": {
"@carto/carto.js": {
"version": "4.0.17",
"version": "4.1.0",
"from": "@carto/carto.js@>=4.0.6 <5.0.0",
"resolved": "https://registry.npmjs.org/@carto/carto.js/-/carto.js-4.0.17.tgz"
"resolved": "https://registry.npmjs.org/@carto/carto.js/-/carto.js-4.1.0.tgz"
},
"@carto/zera": {
"version": "1.0.6",
@ -1142,9 +1142,9 @@
}
},
"eslint-scope": {
"version": "3.7.1",
"version": "3.7.3",
"from": "eslint-scope@>=3.7.1 <4.0.0",
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.1.tgz",
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.3.tgz",
"dependencies": {
"estraverse": {
"version": "4.2.0",
@ -1519,9 +1519,9 @@
"resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz"
},
"html-minifier": {
"version": "3.5.18",
"version": "3.5.19",
"from": "html-minifier@>=3.2.3 <4.0.0",
"resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.18.tgz"
"resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.19.tgz"
},
"html-webpack-plugin": {
"version": "3.2.0",
@ -1665,9 +1665,9 @@
}
},
"internal-carto.js": {
"version": "4.0.18-0",
"from": "cartodb/carto.js#v4.0.18-0",
"resolved": "git://github.com/cartodb/carto.js.git#f1964aaf454b1bd2221fc45946cc495886152e3b"
"version": "4.1.1-0",
"from": "cartodb/carto.js#v4.1.1-0",
"resolved": "git://github.com/cartodb/carto.js.git#85499951eb4ea2199c6c11db4ce4071f2880fe10"
},
"interpret": {
"version": "1.1.0",
@ -3392,9 +3392,9 @@
"resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.1.tgz"
},
"use": {
"version": "3.1.0",
"version": "3.1.1",
"from": "use@>=3.1.0 <4.0.0",
"resolved": "https://registry.npmjs.org/use/-/use-3.1.0.tgz"
"resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz"
},
"util": {
"version": "0.10.4",

@ -33,7 +33,7 @@
"d3-queue": "^3.0.7",
"fastclick": "^1.0.6",
"html-webpack-plugin": "^3.2.0",
"internal-carto.js": "CartoDB/carto.js#v4.0.18-0",
"internal-carto.js": "CartoDB/carto.js#v4.1.1-0",
"jquery": "2.1.4",
"leaflet": "CartoDB/Leaflet#v1.3.1-carto1",
"moment": "2.18.1",

Loading…
Cancel
Save