Skip to content

Commit 0b4fa1e

Browse files
committed
Updated readme with development text, js file updated with proper comment if width or height is not provided.
1 parent 3f754d0 commit 0b4fa1e

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# jquery-upload-image-customization
22
This repository provides the code for Preview of uploaded image in jQuery. Beside that developer can restrict the size and dimension of image to be uploded. <br>
33
The Full Code can be found here on website https://nirajrajgor.github.io/jquery-upload-image-customization/ <br>
4-
**In Development**
4+
**The site is still In Development in terms of UI, it will be live soon.**

css/uploader.css

+3
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@ body { padding-top: 70px; }
55
#remove-profile-btn{
66
display: none;
77
margin-top: 12px;
8+
}
9+
#my-profile-file-selector{
10+
display: none;
811
}

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ <h1>Image Upload with Preview, Restriction on file Size &amp; Dimensions</h1>
6161
<label class="col-sm-2 col-sm-offset-2 control-label">Profile Picture</label>
6262
<div class="col-sm-6">
6363
<label class="btn btn-primary btn-outline profile" for="my-profile-file-selector">
64-
<input id="my-profile-file-selector" type="file" style="display:none;" >
64+
<input id="my-profile-file-selector" type="file">
6565
Upload
6666
</label>
6767
<span class='' id="upload-profile-file-info"></span>

js/uploader.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,11 @@ function checkProfileSize(arg){
5151
$('#remove-profile-btn').show();
5252
}
5353
else{
54+
imgWidth = arg.width || "any";
55+
imgHeight = arg.height || "any";
5456
$('#upload-profile-error')
55-
.html('Uploaded Profile picture Dimension should be '+
56-
imgWidth+' * '+imgHeight);
57+
.html('Uploaded Picture Width should be '+
58+
imgWidth+' and Height should be '+imgHeight);
5759
var fileName = $('input#my-profile-file-selector[type=file]').val();
5860
console.log(fileName);
5961
}

0 commit comments

Comments
 (0)