aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-02-12 10:43:20 +0100
committerMario Vavti <mario@mariovavti.com>2018-02-12 10:43:20 +0100
commit9e2424ee7648fd951b120db65af658f6d39edd92 (patch)
tree110204b86b837dbdbb81062feb878de038d248c3 /view/tpl
parent6d2661a8f73165564452de227df2fef49cb73306 (diff)
downloadvolse-hubzilla-9e2424ee7648fd951b120db65af658f6d39edd92.tar.gz
volse-hubzilla-9e2424ee7648fd951b120db65af658f6d39edd92.tar.bz2
volse-hubzilla-9e2424ee7648fd951b120db65af658f6d39edd92.zip
fix issue with new cropping lib and whitespace
Diffstat (limited to 'view/tpl')
-rwxr-xr-xview/tpl/cropbody.tpl23
-rwxr-xr-xview/tpl/cropcover.tpl23
2 files changed, 22 insertions, 24 deletions
diff --git a/view/tpl/cropbody.tpl b/view/tpl/cropbody.tpl
index d35546ec6..e008167bb 100755
--- a/view/tpl/cropbody.tpl
+++ b/view/tpl/cropbody.tpl
@@ -14,18 +14,17 @@
var image = document.getElementById('croppa');
var cropper = new Cropper(image, {
- aspectRatio: 1 / 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: 1 / 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>
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>