diff --git a/experimental/gpld-default-to-min-date.js b/experimental/gpld-default-to-min-date.js index 8d1760319..7b69c8065 100644 --- a/experimental/gpld-default-to-min-date.js +++ b/experimental/gpld-default-to-min-date.js @@ -1,18 +1,5 @@ /** - * Gravity Perks // GP Limit Dates // Default value to the minimum date allowed - * https://gravitywiz.com/documentation/gravity-forms-limit-dates/ - * - * Instructions: - * 1. Install our free Custom Javascript for Gravity Forms plugin. - * Download the plugin here: https://gravitywiz.com/gravity-forms-code-chest/ - * 2. Copy and paste the snippet into the editor of the Custom Javascript for Gravity Forms plugin. - * 3. Update `formId` variable accordingly + * We're no longer using the experimental folder for experimental snippets. 🚧 + * You can now find the snippet here: + * https://github.com/gravitywiz/snippet-library/blob/master/gp-limit-dates/gpld-default-to-min-date.js */ -var fieldId = 5; - -/* Not ideal to use the setTimeout, but it helps make sure the datepicker is ready to go. */ -setTimeout( function () { - jQuery( '#input_GFFORMID_' + fieldId ) - .val( GPLimitDates.getDateValue( '', 'minDate', fieldId, GFFORMID, GPLimitDatesDataGFFORMID ) ) - .change(); -} );