Skip to content

Commit

Permalink
conflicts solved
Browse files Browse the repository at this point in the history
  • Loading branch information
xavijam committed Jun 3, 2014
2 parents 529e6fd + 4fcf628 commit 680628e
Show file tree
Hide file tree
Showing 51 changed files with 2,194 additions and 245 deletions.
10 changes: 10 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
3.9.08 (03//06//2014)
- New "liquid" infowindow style implemented.

3.9.07 (03//06//2014)
- Fixed exception on hover for layers without tooltip
- Improved tooltip interaction
- Changed cartocss library to support marker-type "rectangle"
- Fixed setParam when there are no default params (#120)

3.9.06 (25//05//2014)
- Allowfullscreen parameter added to iframe code
in share dialog.
- Fixes link style in embed header
- Enables custom legends in Torque.

3.9.05 (19//05//2014)
- Fixed tileJSON method in cdb.Tiles
Expand Down
8 changes: 4 additions & 4 deletions dist/cartodb.core.js

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions dist/cartodb.core.uncompressed.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// version: 3.9.06
// sha: 9771e3cf329cabba6b4682bd842749f9f4a5067a
// version: 3.9.08
// sha: d693bf6fc7ed94b8ba3fc7d70cf15941431cc102
;(function() {
this.cartodb = {};
var Backbone = {};
Expand Down Expand Up @@ -1141,7 +1141,7 @@ var Mustache;

var cdb = root.cdb = {};

cdb.VERSION = '3.9.06';
cdb.VERSION = '3.9.08';
cdb.DEBUG = false;

cdb.CARTOCSS_VERSIONS = {
Expand Down Expand Up @@ -2581,6 +2581,9 @@ NamedMap.prototype = _.extend({}, Map.prototype, {
} else {
params = attr;
}
if (!this.named_map.params) {
this.named_map.params = {};
}
for (var k in params) {
if (params[k] === undefined || params[k] === null) {
delete this.named_map.params[k];
Expand Down
Loading

0 comments on commit 680628e

Please sign in to comment.