Skip to content
Snippets Groups Projects
Commit 25f83d3a authored by colemanw's avatar colemanw
Browse files

Merge pull request #753 from pratik-joshi/CRM-12570-fix

CRM-12570 fix
parents 6a684a5f f2a70336
No related branches found
No related tags found
No related merge requests found
......@@ -73,10 +73,10 @@ cj(function($) {
$("#{$form.formName}").validate(params);
{literal}
// Call any post-initialization callbacks
if (CRM.validate && CRM.validate.functions) {
for (var i in CRM.validate.functions) {
CRM.validate.functions[i]();
}
if (CRM.validate && CRM.validate.functions.length) {
$.each(CRM.validate.functions, function(i, func) {
func();
});
}
{/literal}
{/if}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment