Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jio-main
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Hardik Juneja
jio-main
Commits
569ed6f5
Commit
569ed6f5
authored
Sep 06, 2013
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
default success status response updated
parent
b4ea555e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/jio/core/IODeferred.js
src/jio/core/IODeferred.js
+2
-1
No files found.
src/jio/core/IODeferred.js
View file @
569ed6f5
...
@@ -18,7 +18,8 @@ IODeferred.prototype.resolve = function (a, b) {
...
@@ -18,7 +18,8 @@ IODeferred.prototype.resolve = function (a, b) {
if
(
this
.
_method
===
'
post
'
)
{
if
(
this
.
_method
===
'
post
'
)
{
weak
.
status
=
constants
.
http_status
.
created
;
weak
.
status
=
constants
.
http_status
.
created
;
weak
.
statusText
=
constants
.
http_status_text
.
created
;
weak
.
statusText
=
constants
.
http_status_text
.
created
;
}
else
if
(
this
.
_method
===
'
remove
'
||
this
.
_method
===
'
removeAttachment
'
)
{
}
else
if
(
methodType
(
this
.
_method
)
===
"
writer
"
||
this
.
_method
===
"
check
"
)
{
weak
.
status
=
constants
.
http_status
.
no_content
;
weak
.
status
=
constants
.
http_status
.
no_content
;
weak
.
statusText
=
constants
.
http_status_text
.
no_content
;
weak
.
statusText
=
constants
.
http_status_text
.
no_content
;
}
else
{
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment