Skip to content

Commit

Permalink
Update I.blade.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian authored Sep 20, 2019
1 parent eb34a33 commit 7847db8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/admin/views/attributes/I.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function addedFile(file) {
loadedImage.dataset.name = file.name;
loadedImage.dataset.type = file.type;
loadedImage.onload = function () {
if(attribH_{{$attribute_name}} === this.height && attribW_{{$attribute_name}} === this.width) {
if(attribH_{{$attribute_name}} == this.height && attribW_{{$attribute_name}} == this.width) {
dropzone_{{$attribute_name}}.processQueue();
}
else if (attribH_{{$attribute_name}} === '' && attribW_{{$attribute_name}} === '') {
Expand Down

0 comments on commit 7847db8

Please sign in to comment.