Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add new 'edgeLimit' option #429

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat: add new 'edgeLimit' option
fixed #352
  • Loading branch information
kangw3n committed Dec 1, 2020
commit 341a3adf43e56c9b8f8f3aa12d158d613dc1da2b
70 changes: 64 additions & 6 deletions dist/viewer.common.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

70 changes: 64 additions & 6 deletions dist/viewer.esm.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

70 changes: 64 additions & 6 deletions dist/viewer.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/css/viewer.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Copyright 2015-present Chen Fengyuan
* Released under the MIT license
*
* Date: 2020-11-08T05:28:32.068Z
* Date: 2020-12-01T01:27:02.712Z
*/

.viewer-zoom-in::before,
Expand Down
6 changes: 6 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,12 @@ <h3>Options</h3>
<label for="zoomOnTouch" class="form-check-label">zoomOnTouch</label>
</div>
</li>
<li class="list-group-item">
<div class="form-check">
<input class="form-check-input" id="edgeLimit" type="checkbox" name="edgeLimit">
<label for="edgeLimit" class="form-check-label">edgeLimit</label>
</div>
</li>
<li class="list-group-item">
<div class="form-check">
<input class="form-check-input" id="zoomOnWheel" type="checkbox" name="zoomOnWheel" checked>
Expand Down
Loading