{"id":16491,"date":"2021-07-29T08:52:01","date_gmt":"2021-07-29T06:52:01","guid":{"rendered":"https:\/\/quiltisrael.com\/?page_id=16491"},"modified":"2021-08-08T17:08:52","modified_gmt":"2021-08-08T15:08:52","slug":"quilting-calculator","status":"publish","type":"page","link":"https:\/\/quiltisrael.com\/he\/quilting-calculator\/","title":{"rendered":"Quilting Calculator"},"content":{"rendered":"<script>\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework free-motion-calculator-form_wrapper' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_8' style='display:none'><form method='post' enctype='multipart\/form-data'  id='gform_8' class='free-motion-calculator-form' action='\/he\/wp-json\/wp\/v2\/pages\/16491' data-formid='8' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_8' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_8_1\" class=\"gfield gfield--type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><\/div><div id=\"field_8_2\" class=\"gfield gfield--type-number gfield--width-quarter field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_8_2'>Height<\/label><div class='ginput_container ginput_container_number'><input name='input_2' id='input_8_2' type='number' step='any'   value='' class='medium'      aria-invalid=\"false\"  \/><\/div><\/div><div id=\"field_8_3\" class=\"gfield gfield--type-number gfield--width-quarter field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_8_3'>Width<\/label><div class='ginput_container ginput_container_number'><input name='input_3' id='input_8_3' type='number' step='any'   value='' class='medium'      aria-invalid=\"false\"  \/><\/div><\/div><div data-fieldId=\"3\" class=\"spacer gfield\" style=\"grid-column: span 9;\" data-groupId=\"680a4feb\"><\/div><fieldset id=\"field_8_5\" class=\"gfield gfield--type-radio gfield--type-choice gf_list_inline\u200f field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Quilting Pattern<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_8_5'>\n\t\t\t<div class='gchoice gchoice_8_5_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_5' type='radio' value='feathers' checked='checked' id='choice_8_5_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_5_0' id='label_8_5_0' class='gform-field-label gform-field-label--type-inline'>Feathers<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_8_5_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_5' type='radio' value='hearts'  id='choice_8_5_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_5_1' id='label_8_5_1' class='gform-field-label gform-field-label--type-inline'>Hearts<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_8_5_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_5' type='radio' value='stipple'  id='choice_8_5_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_5_2' id='label_8_5_2' class='gform-field-label gform-field-label--type-inline'>Stipple<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_8_5_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_5' type='radio' value='swirls'  id='choice_8_5_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_5_3' id='label_8_5_3' class='gform-field-label gform-field-label--type-inline'>Swirls<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_8_6\" class=\"gfield gfield--type-radio gfield--type-choice gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Thread<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_8_6'>\n\t\t\t<div class='gchoice gchoice_8_6_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_6' type='radio' value='Quilter&#039;s Choice'  id='choice_8_6_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_6_0' id='label_8_6_0' class='gform-field-label gform-field-label--type-inline'>Quilter&#8217;s Choice<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_8_6_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_6' type='radio' value='Red'  id='choice_8_6_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_6_1' id='label_8_6_1' class='gform-field-label gform-field-label--type-inline'>Red<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_8_6_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_6' type='radio' value='Blue'  id='choice_8_6_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_6_2' id='label_8_6_2' class='gform-field-label gform-field-label--type-inline'>Blue<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_8_6_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_6' type='radio' value='gf_other_choice'  id='choice_8_6_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_6_3' id='label_8_6_3' class='gform-field-label gform-field-label--type-inline'>\u05d0\u05d7\u05e8<\/label><br \/><input id='input_8_6_other' class='gchoice_other_control' name='input_6_other' type='text' value='\u05d0\u05d7\u05e8' aria-label='\u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d0\u05d7\u05e8\u05ea, \u05e0\u05d0 \u05dc\u05e6\u05d9\u05d9\u05df'  disabled='disabled' \/>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_8_11\" class=\"gfield gfield--type-radio gfield--type-choice gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Backing<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_8_11'>\n\t\t\t<div class='gchoice gchoice_8_11_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_11' type='radio' value='I&#039;ll provide my own'  id='choice_8_11_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_11_0' id='label_8_11_0' class='gform-field-label gform-field-label--type-inline'>I&#8217;ll provide my own<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_8_11_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_11' type='radio' value='Please add backing'  id='choice_8_11_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_11_1' id='label_8_11_1' class='gform-field-label gform-field-label--type-inline'>Please add backing<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_8_7\" class=\"gfield gfield--type-radio gfield--type-choice gfield--width-full gf_list_inline field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Choose Backing<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_8_7'>\n\t\t\t<div class='gchoice gchoice_8_7_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_7' type='radio' value='1'  id='choice_8_7_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_7_0' id='label_8_7_0' class='gform-field-label gform-field-label--type-inline'>Backing 1 &#8211; $<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_8_7_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_7' type='radio' value='2'  id='choice_8_7_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_7_1' id='label_8_7_1' class='gform-field-label gform-field-label--type-inline'>Backing 2 &#8211; $$<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_8_8\" class=\"gfield gfield--type-radio gfield--type-choice gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Batting<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_8_8'>\n\t\t\t<div class='gchoice gchoice_8_8_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_8' type='radio' value='1'  id='choice_8_8_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_8_0' id='label_8_8_0' class='gform-field-label gform-field-label--type-inline'>Standard<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_8_8_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_8' type='radio' value='2'  id='choice_8_8_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_8_1' id='label_8_8_1' class='gform-field-label gform-field-label--type-inline'>Second Choice &#8211; $<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_8_8_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_8' type='radio' value='3'  id='choice_8_8_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_8_2' id='label_8_8_2' class='gform-field-label gform-field-label--type-inline'>Third Choice &#8211; $$<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_8_9\" class=\"gfield gfield--type-radio gfield--type-choice gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Trimming and Binding<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_8_9'>\n\t\t\t<div class='gchoice gchoice_8_9_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_9' type='radio' value='0'  id='choice_8_9_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_9_0' id='label_8_9_0' class='gform-field-label gform-field-label--type-inline'>I&#8217;ll trim and bind it myself<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_8_9_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_9' type='radio' value='1'  id='choice_8_9_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_9_1' id='label_8_9_1' class='gform-field-label gform-field-label--type-inline'>You trim, I&#8217;ll bind<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_8_9_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_9' type='radio' value='2'  id='choice_8_9_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_8_9_2' id='label_8_9_2' class='gform-field-label gform-field-label--type-inline'>Trim and bind it for me<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_8_10\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Expedite for an additional charge<\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_8_10'><div class='gchoice gchoice_8_10_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.1' type='checkbox'  value='yes'  id='choice_8_10_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_8_10_1' id='label_8_10_1' class='gform-field-label gform-field-label--type-inline'>Please do<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_8' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Submit'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_8' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_8' id='gform_theme_8' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_8' id='gform_style_settings_8' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_8' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='8' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='ILS' value='7eRqxMXL+2FTvLb\/ZWZ3sKr5KxxaoU0D7uhrdH79phTfvkC2wm8CInkt\/kH1piDEk+rPfHg1uTcQKEqkJczCHgSuNwTmchcgI+6JFoodcj9Yd4o=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_8' value='WyJbXSIsImIyYmM1OGJkY2Y0MTczZjA1NGQ3Zjg4MGFiYmVlMjExIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_8' id='gform_target_page_number_8' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_8' id='gform_source_page_number_8' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <p style=\"display: none !important;\" class=\"akismet-fields-container\" data-prefix=\"ak_\"><label>&#916;<textarea name=\"ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"><\/textarea><\/label><input type=\"hidden\" id=\"ak_js_1\" name=\"ak_js\" value=\"91\"\/><script>document.getElementById( \"ak_js_1\" ).setAttribute( \"value\", ( new Date() ).getTime() );<\/script><\/p><\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 8, 'https:\/\/quiltisrael.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_8').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_8');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_8').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_8').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_8').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_8').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_8').val();gformInitSpinner( 8, 'https:\/\/quiltisrael.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [8, current_page]);window['gf_submitting_8'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_8').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [8]);window['gf_submitting_8'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_8').text());}else{jQuery('#gform_8').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"8\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_8\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_8\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_8\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 8, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-quilt-calculator.php","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-16491","page","type-page","status-publish","hentry"],"acf":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/quiltisrael.com\/he\/wp-json\/wp\/v2\/pages\/16491","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/quiltisrael.com\/he\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/quiltisrael.com\/he\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/quiltisrael.com\/he\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/quiltisrael.com\/he\/wp-json\/wp\/v2\/comments?post=16491"}],"version-history":[{"count":0,"href":"https:\/\/quiltisrael.com\/he\/wp-json\/wp\/v2\/pages\/16491\/revisions"}],"wp:attachment":[{"href":"https:\/\/quiltisrael.com\/he\/wp-json\/wp\/v2\/media?parent=16491"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}