Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
66e0e8aa
Commit
66e0e8aa
authored
Jul 28, 2014
by
Alex-Code
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update yii.activeForm.js
parent
334b3130
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
yii.activeForm.js
framework/assets/yii.activeForm.js
+17
-2
No files found.
framework/assets/yii.activeForm.js
View file @
66e0e8aa
...
...
@@ -270,7 +270,22 @@
});
},
data
.
settings
.
validationDelay
);
};
/**
* Returns an array prototype with a shortcut method for adding a new deferred.
* The context of the callback will be the deferred object so it can be resolved like ```this.resolve()```
* @returns Array
*/
var
deferredArray
=
function
()
{
var
array
=
[];
array
.
add
=
function
(
callback
)
{
var
deferred
=
new
$
.
Deferred
();
callback
.
call
(
deferred
);
this
.
push
(
deferred
);
};
return
array
;
};
/**
* Performs validation.
* @param $form jQuery the jquery representation of the form
...
...
@@ -281,7 +296,7 @@
var
data
=
$form
.
data
(
'yiiActiveForm'
),
needAjaxValidation
=
false
,
messages
=
{},
deferreds
=
[]
;
deferreds
=
deferredArray
()
;
$
.
each
(
data
.
attributes
,
function
()
{
if
(
data
.
submitting
||
this
.
status
===
2
||
this
.
status
===
3
)
{
...
...
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