aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/cropcover.tpl
diff options
context:
space:
mode:
authormrjive <mrjive@mrjive.it>2018-02-21 12:55:29 +0100
committerGitHub <noreply@github.com>2018-02-21 12:55:29 +0100
commit2d17e1c677cd981858a4080af98edb51bbb5d822 (patch)
tree54d5d148d368632158584ba7eec7872170524e00 /view/tpl/cropcover.tpl
parentd7ecaa8b23a36ea1e9a0f185017930b5552c00b5 (diff)
parenta829256bc4803731881a51bddd19ee59a5a234ff (diff)
downloadvolse-hubzilla-2d17e1c677cd981858a4080af98edb51bbb5d822.tar.gz
volse-hubzilla-2d17e1c677cd981858a4080af98edb51bbb5d822.tar.bz2
volse-hubzilla-2d17e1c677cd981858a4080af98edb51bbb5d822.zip
Merge pull request #15 from redmatrix/dev
Dev
Diffstat (limited to 'view/tpl/cropcover.tpl')
-rwxr-xr-xview/tpl/cropcover.tpl23
1 files changed, 11 insertions, 12 deletions
diff --git a/view/tpl/cropcover.tpl b/view/tpl/cropcover.tpl
index 8888a967a..ba91a2cce 100755
--- a/view/tpl/cropcover.tpl
+++ b/view/tpl/cropcover.tpl
@@ -13,18 +13,17 @@
var image = document.getElementById('croppa');
var cropper = new Cropper(image, {
- aspectRatio: 2.75 / 1,
- viewMode: 1,
- preview: '.crop-preview',
- crop: function(e) {
- $( 'x1' ).value = e.detail.x;
- $( 'y1' ).value = e.detail.y;
- $( 'x2' ).value = e.detail.x + e.detail.width;
- $( 'y2' ).value = e.detail.y + e.detail.height;
- $( 'width' ).value = e.detail.scaleX;
- $( 'height' ).value = e.detail.scaleY;
-
- }
+ aspectRatio: 2.75 / 1,
+ viewMode: 1,
+ preview: '.crop-preview',
+ crop: function(e) {
+ $( '#x1' ).val(e.detail.x);
+ $( '#y1' ).val(e.detail.y);
+ $( '#x2' ).val(e.detail.x + e.detail.width);
+ $( '#y2' ).val(e.detail.y + e.detail.height);
+ $( '#width' ).val(e.detail.scaleX);
+ $( '#height' ).val(e.detail.scaleY);
+ }
});
</script>