Skip to content

Commit

Permalink
finish JSONP output
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremytubbs committed Sep 7, 2015
1 parent fc1c473 commit e3443bc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Deepzoom.php
Original file line number Diff line number Diff line change
Expand Up @@ -231,13 +231,13 @@ public function createJSONP($filename, $height, $width)
return <<<EOF
$filename({
Image: {
xmlns: 'http://schemas.microsoft.com/deepzoom/2008',
Format: '$this->tileFormat',
Overlap: $this->tileOverlap,
TileSize: $$this->tileSize
xmlns: 'http://schemas.microsoft.com/deepzoom/2008',
Format: '$this->tileFormat',
Overlap: $this->tileOverlap,
TileSize: $this->tileSize
Size: {
Width: 676,
Height: 571
Width: $width,
Height: $height
}
}
});
Expand Down

0 comments on commit e3443bc

Please sign in to comment.