1234567891011121314151617181920212223242526272829303132 |
- {{#if isLoaded}}
- <div class="image-cropper">
- <div class="cropit-image-preview"></div>
- <input type="range" class="cropit-image-zoom-input" />
- </div>
- <div class="row">
- <div class="col-md-6 col-md-offset-3">
- {{#if isBusy}}
- <button type="button" class="btn btn-primary btn-block disabled" disabled="disabled">
- {{gettext "Cropping..."}}
- </button>
- {{else}}
- <button type="button" class="btn btn-primary btn-block" {{action "crop"}}>
- {{#if isNested}}
- {{gettext "Set avatar"}}
- {{else}}
- {{gettext "Crop image"}}
- {{/if}}
- </button>
- {{/if}}
- <button type="button" class="btn btn-default btn-outlined btn-block {{if isBusy "disabled"}}" {{if isBusy "disabled"}} {{action "cancel"}}>
- {{gettext "Cancel"}}
- </button>
- </div>
- </div>
- {{else}}
- <div class="loader"></div>
- {{/if}}
|