Skip to content

Commit

Permalink
Use proper name for zoomWindowOffsetX
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Lino committed Jun 29, 2015
1 parent c981a4d commit 54dbb6c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions demo/api.htm
Original file line number Diff line number Diff line change
Expand Up @@ -140,19 +140,19 @@ <h1>Configuration Options</h1>
<td>Height of the zoomWindow (Note: zoomType must be &quot;window&quot;)</td>
</tr>
<tr>
<td>zoomWindowOffetx</td>
<td>zoomWindowOffsetX</td>
<td>0</td>
<td>x-axis offset of the zoom window</td>
</tr>
<tr>
<td>zoomWindowOffety</td>
<td>zoomWindowOffsetY</td>
<td>0</td>
<td>y-axis offset of the zoom window</td>
</tr>
<tr>
<td>zoomWindowPosition</td>
<td>1</td>
<td>Once positioned, use <code>zoomWindowOffsetx</code> and <code>zoomWindowOffsety</code> to adjust<br/>
<td>Once positioned, use <code>zoomWindowOffsetX</code> and <code>zoomWindowOffsetY</code> to adjust<br/>
Possible values: 1-16
</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion demo/examples.htm
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ <h3><a name="window-position">Window Position</a></h3>
borderSize: 0,
easing: true
});
$("#zoom_04d").ezPlus({zoomWindowPosition: 1, zoomWindowOffetx: 10});
$("#zoom_04d").ezPlus({zoomWindowPosition: 1, zoomWindowOffsetX: 10});

});
</script>
Expand Down
2 changes: 1 addition & 1 deletion demo/js/web.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ $(document).ready(function () {
imageCrossfade: true,
zoomWindowWidth: 411,
zoomWindowHeight: 274,
zoomWindowOffetx: 10,
zoomWindowOffsetX: 10,
scrollZoom: true,
cursor: 'pointer'
});
Expand Down
2 changes: 1 addition & 1 deletion demo/snippets/code-ezp-e04.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ $('#zoom_04c').ezPlus({
});
$('#zoom_04d').ezPlus({
zoomWindowPosition: 1,
zoomWindowOffetx: 10
zoomWindowOffsetX: 10
});

0 comments on commit 54dbb6c

Please sign in to comment.