Skip to content

Commit

Permalink
Fix sizing of map in GMapCellWidget (again)
Browse files Browse the repository at this point in the history
Amends 73ca916.

This worked in the Qt cell but not in the browser, because "%%" was
actually printed verbatim.
  • Loading branch information
remram44 committed Mar 22, 2017
1 parent 087d070 commit a400bbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vistrails/packages/gmaps/gmap_cell.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ class GMapCellWidget(WebViewCellWidget):
}
#map-canvas, #map_canvas {
height: 100%%;
width: 100%%;
height: 100%;
width: 100%;
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=visualization&sensor=false"></script>
Expand Down

0 comments on commit a400bbb

Please sign in to comment.