This file contains hidden or 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
| Coverage Badges |
This file contains hidden or 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
| swagger: '2.0' | |
| info: | |
| description: This is the external API available for partners to work with BodesWell platforms. | |
| version: 1.0.0 | |
| title: BodesWell API | |
| termsOfService: https://www.bodeswell.io/terms-conditions | |
| contact: | |
| email: support@bodeswell.io | |
| host: app.bodewell.io | |
| basePath: /api/ext |
This file contains hidden or 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
| /** | |
| * by Bernie Bernstein. Find me in ZoomOSC Power Users slack channel: | |
| * https://zoomoscpowerusers.slack.com/join/shared_invite/zt-ibb2jhgm-NEij9uT~Fgp98xVlkNCGVA#/ | |
| * | |
| * The gist and other versions could get out-of-date. | |
| * You can find the original here: | |
| * https://github.com/bbernstein/izzy-crop-zoom-gallery/ | |
| * (in the file cropper.js) | |
| * | |
| * Updates: |
This file contains hidden or 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
| type LayoutDescription = { | |
| area: number; | |
| cols: number; | |
| rows: number; | |
| width: number; | |
| height: number; | |
| } | |
| type CropValues = { | |
| left: number; |