Skip to content

Commit

Permalink
include new render client in the build #2766
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Pollock committed Nov 20, 2018
1 parent 59c199c commit 9e8eaae
Show file tree
Hide file tree
Showing 1,767 changed files with 1,209 additions and 322,243 deletions.
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ module.exports = function (grunt) {
[
'pro',
'privacy',
'blocks'
'blocks',
'render'
].forEach( (client) => {
files_list.push( `clients/${client}/build/index.min.js` );
files_list.push( `clients/${client}/build/style.min.css` );
Expand Down
4 changes: 2 additions & 2 deletions assets/build/js/caldera-forms-front.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions assets/build/js/fields.min.js

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion assets/js/caldera-forms-front.js
Original file line number Diff line number Diff line change
Expand Up @@ -4666,7 +4666,14 @@ jQuery( document ).ajaxComplete(function() {
e.preventDefault();
$this.cfdatepicker('show')
.on('show', function(){ $(this).trigger('blur'); })
.on('hide', function(){ $(this).attr("disabled", false); })
.on('hide', function(){
$(this).attr("disabled", false);
if($this.hasClass('parsley-error') && $this.val() !== ''){
$this.removeClass('parsley-error');
$this.addClass('parsley-success');
$('#parsley-id-' + $this.data('parsley-id')).hide();
}
})
}
);

Expand Down
Loading

0 comments on commit 9e8eaae

Please sign in to comment.