Removes the second SVG element unnecessarily added. Visualization width set to 600.
This commit is contained in:
parent
7c817b80bd
commit
df96763525
@ -69,6 +69,9 @@ $(document).ready(function() {
|
||||
}
|
||||
});
|
||||
|
||||
// Removes the second SVG element unnecessarily added due to the above command.
|
||||
$('#placeholder').find('svg:nth-child(2)').remove();
|
||||
|
||||
$('#placeholder').live('mousewheel', function(event, delta) {
|
||||
if (delta > 0) {
|
||||
//zoom in
|
||||
|
||||
@ -39,7 +39,7 @@ class PMA_GIS_Visualization
|
||||
),
|
||||
|
||||
// The width of the GIS visualization.
|
||||
'width' => 700,
|
||||
'width' => 600,
|
||||
|
||||
// The height of the GIS visualization.
|
||||
'height' => 450,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user