Update cdb submodule and vendorize JS

pull/370/head
Alejandro 11 years ago
parent 23e9c99de9
commit aa81d9a5ba

@ -1 +1 @@
Subproject commit c0cb15d72f97251f9df2623b88301dfba99b3aa0
Subproject commit 258dc960fe9fedcd77a9157cfb7d4321e05e17bb

@ -1,6 +1,6 @@
// cartodb.js version: 3.7.06-dev
// cartodb.js version: 3.7.07-dev
// uncompressed version: cartodb.uncompressed.js
// sha: c0cb15d72f97251f9df2623b88301dfba99b3aa0
// sha: 258dc960fe9fedcd77a9157cfb7d4321e05e17bb
(function() {
var root = this;
@ -20686,7 +20686,7 @@ this.LZMA = LZMA;
var cdb = root.cdb = {};
cdb.VERSION = '3.7.06-dev';
cdb.VERSION = '3.7.07-dev';
cdb.DEBUG = false;
cdb.CARTOCSS_VERSIONS = {
@ -25602,6 +25602,10 @@ cdb.ui.common.FullScreen = cdb.core.View.extend({
requestFullScreen.call(docEl);
if (this.options.mapView) {
this.options.mapView.invalidateSize();
}
} else {
cancelFullScreen.call(doc);
@ -30818,7 +30822,8 @@ var Vis = cdb.core.View.extend({
infowindow.model.set({
'fields': infowindowFields.fields,
'template': infowindowFields.template,
'template_type': infowindowFields.template_type
'template_type': infowindowFields.template_type,
'alternative_names': infowindowFields.alternative_names
});
if (attributes) {
@ -31320,7 +31325,8 @@ cdb.vis.Overlay.register('fullscreen', function(data, vis) {
);
var fullscreen = new cdb.ui.common.FullScreen({
doc: "#map > div",
doc: ".cartodb-public-wrapper",
mapView: vis.mapView,
template: template
});

Loading…
Cancel
Save