Created
June 12, 2020 16:46
-
-
Save Ravenna/b095b59835185cba427a27c18ae58368 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.addEventListener('viewerLoaded', () => { | |
const docViewer = readerControl.docViewer; | |
// Add customization here | |
docViewer.setMargin(20); | |
readerControl.disableElements([ | |
'searchButton', | |
'stickyToolButton', | |
'shapeToolGroupButton', | |
'panToolButton', | |
'eraserToolButton', | |
'freeTextToolButton', | |
'freeHandToolGroupButton', | |
'textToolGroupButton', | |
'miscToolGroupButton', | |
'downloadButton', | |
'printButton', | |
@if(Auth::user()->notary) | |
'signatureToolButton' | |
@endif | |
]); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment