Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
filippov70 committed Sep 22, 2014
1 parent 2bcb450 commit 8d21ca3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public_html/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ function createGeodataRepoprt() {
prepare();
pageHeight = $('.pg-height').val();
pageWidth = $('.pg-width').val();
$('#svg').css('width:', pageHeight);
$('#svg').css('height:' + pageHeight);
$('#svg').css('width', pageHeight);
$('#svg').css('height', pageHeight);
paper.rect(0, 0, pageHeight, pageWidth).attr({
fill: "#bada55",
stroke: "#000",
Expand Down

0 comments on commit 8d21ca3

Please sign in to comment.