Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
frontend-uploads
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
f705da28
authored
2016-09-02 18:44:48 -0500
by
Ean Schuessler
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Add support for "pending" uploads
Refs: #7621
1 parent
2fd9a9ca
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/scripts/Upload.js
src/scripts/Upload.js
View file @
f705da2
...
...
@@ -10,7 +10,7 @@ define(function(require) {
var
Status
=
Backbone
.
Model
.
extend
({
defaults
:
function
()
{
return
{
result
:
null
,
result
:
'pending'
,
resultData
:
null
,
sent
:
null
,
completion
:
null
,
...
...
@@ -130,7 +130,7 @@ define(function(require) {
return
true
;
},
filesSubmitted
:
function
()
{
this
.
flow
.
upload
();
//
this.flow.upload();
},
fileProgress
:
function
(
flowFile
)
{
var
model
=
flowFile
.
_model
;
...
...
Please
register
or
sign in
to post a comment