This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
creylopez
/
django-ex
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
2
Wiki
Activity
Browse Source
Skip compression check for pdf files
pull/172/head
Michael Olund
5 years ago
parent
fd7071cce8
commit
47da838102
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
vue/src/components/Uploader/Uploader.vue
+ 4
- 1
vue/src/components/Uploader/Uploader.vue
View File
@ -218,7 +218,7 @@
}
/
/
A
u
t
o
m
a
t
i
c
a
l
l
y
a
c
t
i
v
a
t
e
u
p
l
o
a
d
a
f
t
e
r
c
o
m
p
r
e
s
s
i
o
n
c
o
m
p
l
e
t
e
s
if
(
newFile
&&
oldFile
&&
newFile
.
compressed
&&
!
new
File
.
active
&&
!
old
File
.
active
)
{
if
(
newFile
&&
newFile
.
compressed
&&
!
newFile
.
active
)
{
newFile
.
active
=
true
;
}
}
,
@ -265,6 +265,9 @@
}
)
;
}
,
}
)
;
}
else
{
newFile
.
compressed
=
true
;
}
}
Write
Preview
Loading…
Cancel
Save