Merge branch 'master' into 13127-wayfinding

pull/13185/head
rubenmoya 7 years ago
commit 8a086ee956

@ -1,5 +1,9 @@
var helper = require('../../../../../javascripts/cartodb/helpers/map_options');
var MOBILE_DEVICES_REGEX = /Android|webOS|iPad|iPhone|iPod|BlackBerry|IEMobile|Opera Mini/i;
function isMobileDevice () {
return MOBILE_DEVICES_REGEX.test(navigator.userAgent);
}
function getFBstatus (gl) {
const status = gl.checkFramebufferStatus(gl.FRAMEBUFFER);
@ -30,7 +34,7 @@ function getWebGLsupport (canvas) {
EXT_blend_minmax: '-',
MAX_RENDERBUFFER_SIZE: '-',
renderToFloat: '-',
mobile: helper.isMobileDevice(),
mobile: isMobileDevice(),
userAgent: navigator.userAgent
};

@ -1,6 +1,6 @@
{
"name": "cartodb-ui",
"version": "4.10.113",
"version": "4.10.117",
"dependencies": {
"accessory": {
"version": "1.0.1",

@ -1,6 +1,6 @@
{
"name": "cartodb-ui",
"version": "4.10.116.13127.2",
"version": "4.10.117.13127",
"description": "CARTO UI frontend",
"repository": {
"type": "git",

Loading…
Cancel
Save