├── .editorconfig ├── .env_SAMPLE ├── .eslintrc ├── .floo ├── .flooignore ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── COPYING.txt ├── Gruntfile.js ├── README.md ├── TERMS.md ├── bower.json ├── config ├── example-config.json └── shim.js ├── frontendbuild.sh ├── package.json ├── src ├── _defaults │ └── mappings.json ├── _layouts │ ├── about_us.html │ ├── base.html │ ├── brand-footer.html │ ├── brand-header.html │ ├── email-signup.html │ ├── form-explainer.html │ ├── loan_types_subpage_heading.html │ ├── no_js.html │ ├── notification.html │ ├── oah-email-signup.html │ ├── ratings-form.html │ ├── related-links.html │ ├── sidebar_nav.html │ └── social-media.html ├── _lib │ └── wordpress_journey_processor.py ├── _queries │ └── journey.json ├── _settings │ ├── journey_mappings.json │ ├── lookups.json │ ├── processors.json │ └── settings.json ├── closing-disclosure │ ├── closing-disclosure-1.html │ ├── closing-disclosure-2.html │ ├── closing-disclosure-3.html │ ├── closing-disclosure-4.html │ ├── closing-disclosure-5.html │ └── index.html ├── explore-rates │ └── index.html ├── index.html ├── loan-comparison │ ├── _results.html │ └── index.html ├── loan-estimate │ ├── README.md │ ├── index.html │ ├── loan-estimate-1.html │ ├── loan-estimate-2.html │ └── loan-estimate-3.html ├── loan-options │ ├── FHA-loans │ │ └── index.html │ ├── conventional-loans │ │ └── index.html │ ├── index.html │ └── special-loan-programs │ │ └── index.html ├── monthly-payment-worksheet │ └── index.html ├── mortgage-closing │ └── index.html ├── mortgage-estimate │ └── index.html ├── prepare-worksheets │ └── index.html ├── process │ ├── _process-step.html │ ├── _vars-process.html │ ├── close │ │ └── index.html │ ├── compare │ │ └── index.html │ ├── explore │ │ └── index.html │ ├── index.html │ ├── nav-macro.html │ ├── prepare │ │ └── index.html │ └── sources │ │ └── index.html ├── resources │ ├── adjustable_rate_loan_estimate.pdf │ ├── checklist_mortgage_closing.pdf │ ├── monthly_payment_worksheet.pdf │ └── mortgage_closing_forms.pdf └── static │ ├── css │ ├── brand-palette.less │ ├── cf-theme-overrides.less │ ├── main.less │ └── module │ │ ├── bootstrap-tooltips.less │ │ ├── brand-footer.less │ │ ├── brand-header.less │ │ ├── breadcrumbs.less │ │ ├── email-signup.less │ │ ├── explore-rates.less │ │ ├── form-explainer.less │ │ ├── form-field-with-button.less │ │ ├── form-resources.less │ │ ├── forms.less │ │ ├── helpers.less │ │ ├── hero.less │ │ ├── index.less │ │ ├── layout.less │ │ ├── loan-comparison.less │ │ ├── loan-options.less │ │ ├── loan-type.less │ │ ├── mixins.less │ │ ├── monthly-payment-worksheet.less │ │ ├── no-js.less │ │ ├── notification.less │ │ ├── prepare-worksheets.less │ │ ├── print.less │ │ ├── process.less │ │ ├── related-links.less │ │ ├── social-media.less │ │ ├── tab.less │ │ ├── test.less │ │ └── typography.less │ ├── fonts │ ├── cf-icons.eot │ ├── cf-icons.svg │ ├── cf-icons.ttf │ └── cf-icons.woff │ ├── img │ ├── arm-border.png │ ├── arm-graphic.png │ ├── closing-disclosure-H25B-1.png │ ├── closing-disclosure-H25B-2.png │ ├── closing-disclosure-H25B-3.png │ ├── closing-disclosure-H25B-4.png │ ├── closing-disclosure-H25B-5.png │ ├── footer_calculator.png │ ├── footer_chart.png │ ├── footer_checklist.png │ ├── footer_closing-forms.png │ ├── footer_house.png │ ├── footer_keys.png │ ├── footer_loan-estimate.png │ ├── footer_offers.png │ ├── footer_options.png │ ├── form-resources_mortgage-closing-hero-large.png │ ├── form-resources_mortgage-closing-hero-medium.png │ ├── form-resources_mortgage-closing-hero-small.png │ ├── form-resources_mortgage-estimate-hero-large.png │ ├── form-resources_mortgage-estimate-hero-medium.png │ ├── form-resources_mortgage-estimate-hero-small.png │ ├── gray-bg.png │ ├── hero-housekey.png │ ├── icon_spinner.gif │ ├── ill-chart.png │ ├── ill-form-explainer-closing-disc.png │ ├── ill-form-explainer-loan-est.png │ ├── ill-loan-comparison.png │ ├── loan-estimate-H24B-1.png │ ├── loan-estimate-H24B-2.png │ ├── loan-estimate-H24B-3.png │ ├── modal-house.png │ ├── oah-hero-image.png │ ├── process_close-small.png │ ├── process_close.png │ ├── process_compare-small.png │ ├── process_compare.png │ ├── process_explore-small.png │ ├── process_explore.png │ ├── process_maintain-small.png │ ├── process_maintain.png │ ├── process_prepare-small.png │ ├── process_prepare.png │ ├── select-old.png │ ├── select.png │ ├── services-not-shopped-for-highlight.png │ ├── slider-bg.png │ ├── slider-handle.png │ ├── slider-handle@2x.png │ ├── slider-handle_single.png │ └── video_costs_of_buying_home_video_thumbnail.jpg │ └── js │ ├── app.js │ ├── legacy │ ├── ie9.js │ └── lte-ie8.js │ ├── modules │ ├── base.js │ ├── clone-form.js │ ├── closing-disclosure.js │ ├── dropdown-utils.js │ ├── email-signup.js │ ├── explore-rates.js │ ├── feedback.js │ ├── form-explainer.js │ ├── formalize.js │ ├── format-timestamp.js │ ├── geolocation.js │ ├── highcharts-theme.js │ ├── humanize-loan-type.js │ ├── loan-comparison.js │ ├── loan-comparison │ │ ├── actions │ │ │ ├── loan-actions.js │ │ │ └── scenario-actions.js │ │ ├── api.js │ │ ├── common.js │ │ ├── components │ │ │ ├── app.js │ │ │ ├── educational-note.js │ │ │ ├── input-radio-group.js │ │ │ ├── input-select.js │ │ │ ├── input-text.js │ │ │ ├── interest-rate-table.js │ │ │ ├── loan-input-downpayment.js │ │ │ ├── loan-input-interest-rate.js │ │ │ ├── loan-input-table-cell.js │ │ │ ├── loan-input-table-row.js │ │ │ ├── loan-input-table.js │ │ │ ├── loan-output-table-cell.js │ │ │ ├── loan-output-table-mobile.js │ │ │ ├── loan-output-table-row.js │ │ │ ├── loan-output-table.js │ │ │ ├── loan-output.js │ │ │ ├── message.js │ │ │ ├── next-steps.js │ │ │ ├── output-alert.js │ │ │ ├── scenario-button.js │ │ │ ├── scenario-header.js │ │ │ ├── scenario-picker.js │ │ │ ├── scenario-section.js │ │ │ ├── styled-numeric-input.js │ │ │ ├── styled-select.js │ │ │ └── tooltip.js │ │ ├── constants │ │ │ ├── loan-constants.js │ │ │ └── scenario-constants.js │ │ ├── dispatcher │ │ │ └── app-dispatcher.js │ │ ├── mortgage-calculations.js │ │ ├── position-notes.js │ │ └── stores │ │ │ ├── loan-store.js │ │ │ └── scenario-store.js │ ├── loan-estimate.js │ ├── loan-options.js │ ├── local-storage-polyfill.js │ ├── monthly-payment-calc.js │ ├── monthly-payment-worksheet.js │ ├── monthly-payment-worksheet │ │ └── worksheet-output.jsx │ ├── mortgage-insurance.js │ ├── notification.js │ ├── object.observe-polyfill.js │ ├── payment-calc.js │ ├── placeholder-polyfill.js │ ├── prepare-worksheets │ │ ├── inputs │ │ │ ├── button-grading-group.js │ │ │ ├── input-graded.js │ │ │ └── input-notes.js │ │ ├── prepare-worksheets.js │ │ ├── util │ │ │ ├── data-document.js │ │ │ ├── dom-helper.js │ │ │ ├── event-observer.js │ │ │ ├── location-services.js │ │ │ └── uuid.js │ │ ├── worksheet-config.js │ │ ├── worksheet-controller.js │ │ └── worksheet-model.js │ ├── process.js │ ├── rates.js │ ├── react-components │ │ ├── formatted-numeric-input.jsx │ │ ├── input-percent.jsx │ │ ├── input-usd.jsx │ │ └── output-usd.jsx │ ├── supports-accessors.js │ ├── tab.js │ ├── total-interest-calc.js │ └── web-storage-proxy.js │ └── templates │ ├── chart-tooltip-multiple.hbs │ ├── chart-tooltip-single.hbs │ ├── county-conf-warning.hbs │ ├── county-fha-warning.hbs │ ├── county-general-warning.hbs │ ├── county-option.hbs │ ├── county-va-warning.hbs │ ├── credit-alert.hbs │ ├── down-payment-warning.hbs │ ├── fail-alert.hbs │ ├── loan-add-button.hbs │ ├── loan-form.hbs │ ├── prepare-worksheets │ ├── input-graded.hbs │ ├── input-notes.hbs │ ├── page-notes.hbs │ ├── page-summary-error.hbs │ ├── page-summary-section.hbs │ ├── page-summary.hbs │ ├── page-worksheets.hbs │ ├── worksheet-graded-editor.hbs │ └── worksheet-notes-editor.hbs │ ├── result-alert.hbs │ └── slider-range-label.hbs └── test ├── api_testing ├── features │ ├── environment.py │ ├── example-environment.cfg │ ├── mi.feature │ ├── mi_invalid_parameter.feature │ ├── mi_missing_parameter.feature │ ├── pages │ │ ├── __init__.py │ │ ├── query_helper.py │ │ └── utils.py │ ├── rc.feature │ ├── rc_invalid_parameter.feature │ ├── rc_missing_parameter.feature │ └── steps │ │ ├── __init__.py │ │ ├── steps_mi.py │ │ └── steps_rc.py └── requirements.txt ├── browser_testing ├── features │ ├── 11_VA_to_jumbo_triggers.feature │ ├── 12_VA_to_jumbo_triggers.feature │ ├── 1_fha_high_balance.feature │ ├── 2_conventional_via_fha.feature │ ├── 3_jumbo_comforming_via_fha.feature │ ├── 4_jumbo_non_comforming_via_fha.feature │ ├── 5_conventional_via_fha_hb.feature │ ├── 6_into_and_out_of_fha_hb.feature │ ├── 7_changing_fha_hb.feature │ ├── 8_hb_behavior_with_va.feature │ ├── closing_disclosure.feature │ ├── environment.py │ ├── example-environment.cfg │ ├── home.feature │ ├── journey.feature │ ├── loan_comparison.feature │ ├── loan_comparison_defaults.feature │ ├── loan_conventional.feature │ ├── loan_estimate.feature │ ├── loan_fha.feature │ ├── loan_options.feature │ ├── loan_options_defaults.feature │ ├── loan_special.feature │ ├── mortgage_closing.feature │ ├── mortgage_estimate.feature │ ├── navigation.feature │ ├── pages │ │ ├── __init__.py │ │ ├── base.py │ │ ├── closing_disclosure.py │ │ ├── home.py │ │ ├── journey.py │ │ ├── loan_comparison.py │ │ ├── loan_estimate.py │ │ ├── loan_options.py │ │ ├── navigation.py │ │ ├── rate_checker.py │ │ ├── screenshot.py │ │ └── utils.py │ ├── rate_checker.feature │ ├── rate_checker_credit_score.feature │ ├── rate_checker_defaults.feature │ ├── rate_checker_links.feature │ ├── rate_checker_loan_amount.feature │ ├── rate_checker_loan_details.feature │ └── steps │ │ ├── __init__.py │ │ ├── decorators.py │ │ ├── steps_closing_disclosure.py │ │ ├── steps_home.py │ │ ├── steps_journey.py │ │ ├── steps_loan_comparison_common.py │ │ ├── steps_loan_options.py │ │ ├── steps_navigation.py │ │ ├── steps_rate_checker_common.py │ │ ├── steps_rate_checker_credit_score.py │ │ ├── steps_rate_checker_loan_amount.py │ │ └── steps_rate_checker_loan_details.py └── requirements.txt ├── index.html ├── jmeter-bootstrap ├── .travis.yml ├── CONTRIBUTING.md ├── README.md ├── TERMS.md ├── bin │ ├── JMeterInstaller.py │ ├── __init__.py │ ├── generate_files_from_jtl.sh │ └── test_installer.py └── tests │ ├── jmeter.properties │ ├── my_test.jmx │ └── my_test_with_parameters.jmx ├── js ├── app-dispatcher_test.js ├── app_test.js ├── dropdown-utils_test.js ├── fixtures │ ├── form-explainer.html │ └── prepare-worksheets.html ├── form-explainer_test.js ├── humanize-loan-type_test.js ├── loan-comparison-api_test.js ├── loan_store_test.js ├── monthly_payment_calc_test.js ├── mortgage_calculations_test.js ├── payment-calc_test.js ├── prepare-worksheets_test.js ├── react_input_percent_test.jsx ├── react_input_usd_test.jsx ├── react_numeric_input_test.jsx ├── react_output_usd_test.jsx ├── scenario-store_test.js └── total-interest_test.js ├── load_testing ├── MI.csv ├── MortgageInsurance.jmx ├── OaH.jmx ├── RC.csv ├── RateChecker.jmx └── pdf.jmx ├── react_compiler.js └── test_artifacts.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env_SAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/.env_SAMPLE -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/.eslintrc -------------------------------------------------------------------------------- /.floo: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://floobits.com/contolini/owning-a-home" 3 | } 4 | -------------------------------------------------------------------------------- /.flooignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/.flooignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/COPYING.txt -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/README.md -------------------------------------------------------------------------------- /TERMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/TERMS.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/bower.json -------------------------------------------------------------------------------- /config/example-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/config/example-config.json -------------------------------------------------------------------------------- /config/shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/config/shim.js -------------------------------------------------------------------------------- /frontendbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/frontendbuild.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/package.json -------------------------------------------------------------------------------- /src/_defaults/mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_defaults/mappings.json -------------------------------------------------------------------------------- /src/_layouts/about_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_layouts/about_us.html -------------------------------------------------------------------------------- /src/_layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_layouts/base.html -------------------------------------------------------------------------------- /src/_layouts/brand-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_layouts/brand-footer.html -------------------------------------------------------------------------------- /src/_layouts/brand-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_layouts/brand-header.html -------------------------------------------------------------------------------- /src/_layouts/email-signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_layouts/email-signup.html -------------------------------------------------------------------------------- /src/_layouts/form-explainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_layouts/form-explainer.html -------------------------------------------------------------------------------- /src/_layouts/loan_types_subpage_heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_layouts/loan_types_subpage_heading.html -------------------------------------------------------------------------------- /src/_layouts/no_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_layouts/no_js.html -------------------------------------------------------------------------------- /src/_layouts/notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_layouts/notification.html -------------------------------------------------------------------------------- /src/_layouts/oah-email-signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_layouts/oah-email-signup.html -------------------------------------------------------------------------------- /src/_layouts/ratings-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_layouts/ratings-form.html -------------------------------------------------------------------------------- /src/_layouts/related-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_layouts/related-links.html -------------------------------------------------------------------------------- /src/_layouts/sidebar_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_layouts/sidebar_nav.html -------------------------------------------------------------------------------- /src/_layouts/social-media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_layouts/social-media.html -------------------------------------------------------------------------------- /src/_lib/wordpress_journey_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_lib/wordpress_journey_processor.py -------------------------------------------------------------------------------- /src/_queries/journey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_queries/journey.json -------------------------------------------------------------------------------- /src/_settings/journey_mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_settings/journey_mappings.json -------------------------------------------------------------------------------- /src/_settings/lookups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_settings/lookups.json -------------------------------------------------------------------------------- /src/_settings/processors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_settings/processors.json -------------------------------------------------------------------------------- /src/_settings/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/_settings/settings.json -------------------------------------------------------------------------------- /src/closing-disclosure/closing-disclosure-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/closing-disclosure/closing-disclosure-1.html -------------------------------------------------------------------------------- /src/closing-disclosure/closing-disclosure-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/closing-disclosure/closing-disclosure-2.html -------------------------------------------------------------------------------- /src/closing-disclosure/closing-disclosure-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/closing-disclosure/closing-disclosure-3.html -------------------------------------------------------------------------------- /src/closing-disclosure/closing-disclosure-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/closing-disclosure/closing-disclosure-4.html -------------------------------------------------------------------------------- /src/closing-disclosure/closing-disclosure-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/closing-disclosure/closing-disclosure-5.html -------------------------------------------------------------------------------- /src/closing-disclosure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/closing-disclosure/index.html -------------------------------------------------------------------------------- /src/explore-rates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/explore-rates/index.html -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/index.html -------------------------------------------------------------------------------- /src/loan-comparison/_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/loan-comparison/_results.html -------------------------------------------------------------------------------- /src/loan-comparison/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/loan-comparison/index.html -------------------------------------------------------------------------------- /src/loan-estimate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/loan-estimate/README.md -------------------------------------------------------------------------------- /src/loan-estimate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/loan-estimate/index.html -------------------------------------------------------------------------------- /src/loan-estimate/loan-estimate-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/loan-estimate/loan-estimate-1.html -------------------------------------------------------------------------------- /src/loan-estimate/loan-estimate-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/loan-estimate/loan-estimate-2.html -------------------------------------------------------------------------------- /src/loan-estimate/loan-estimate-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/loan-estimate/loan-estimate-3.html -------------------------------------------------------------------------------- /src/loan-options/FHA-loans/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/loan-options/FHA-loans/index.html -------------------------------------------------------------------------------- /src/loan-options/conventional-loans/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/loan-options/conventional-loans/index.html -------------------------------------------------------------------------------- /src/loan-options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/loan-options/index.html -------------------------------------------------------------------------------- /src/loan-options/special-loan-programs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/loan-options/special-loan-programs/index.html -------------------------------------------------------------------------------- /src/monthly-payment-worksheet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/monthly-payment-worksheet/index.html -------------------------------------------------------------------------------- /src/mortgage-closing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/mortgage-closing/index.html -------------------------------------------------------------------------------- /src/mortgage-estimate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/mortgage-estimate/index.html -------------------------------------------------------------------------------- /src/prepare-worksheets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/prepare-worksheets/index.html -------------------------------------------------------------------------------- /src/process/_process-step.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/process/_process-step.html -------------------------------------------------------------------------------- /src/process/_vars-process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/process/_vars-process.html -------------------------------------------------------------------------------- /src/process/close/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/process/close/index.html -------------------------------------------------------------------------------- /src/process/compare/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/process/compare/index.html -------------------------------------------------------------------------------- /src/process/explore/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/process/explore/index.html -------------------------------------------------------------------------------- /src/process/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/process/index.html -------------------------------------------------------------------------------- /src/process/nav-macro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/process/nav-macro.html -------------------------------------------------------------------------------- /src/process/prepare/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/process/prepare/index.html -------------------------------------------------------------------------------- /src/process/sources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/process/sources/index.html -------------------------------------------------------------------------------- /src/resources/adjustable_rate_loan_estimate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/resources/adjustable_rate_loan_estimate.pdf -------------------------------------------------------------------------------- /src/resources/checklist_mortgage_closing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/resources/checklist_mortgage_closing.pdf -------------------------------------------------------------------------------- /src/resources/monthly_payment_worksheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/resources/monthly_payment_worksheet.pdf -------------------------------------------------------------------------------- /src/resources/mortgage_closing_forms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/resources/mortgage_closing_forms.pdf -------------------------------------------------------------------------------- /src/static/css/brand-palette.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/brand-palette.less -------------------------------------------------------------------------------- /src/static/css/cf-theme-overrides.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/cf-theme-overrides.less -------------------------------------------------------------------------------- /src/static/css/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/main.less -------------------------------------------------------------------------------- /src/static/css/module/bootstrap-tooltips.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/bootstrap-tooltips.less -------------------------------------------------------------------------------- /src/static/css/module/brand-footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/brand-footer.less -------------------------------------------------------------------------------- /src/static/css/module/brand-header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/brand-header.less -------------------------------------------------------------------------------- /src/static/css/module/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/breadcrumbs.less -------------------------------------------------------------------------------- /src/static/css/module/email-signup.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/email-signup.less -------------------------------------------------------------------------------- /src/static/css/module/explore-rates.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/explore-rates.less -------------------------------------------------------------------------------- /src/static/css/module/form-explainer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/form-explainer.less -------------------------------------------------------------------------------- /src/static/css/module/form-field-with-button.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/form-field-with-button.less -------------------------------------------------------------------------------- /src/static/css/module/form-resources.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/form-resources.less -------------------------------------------------------------------------------- /src/static/css/module/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/forms.less -------------------------------------------------------------------------------- /src/static/css/module/helpers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/helpers.less -------------------------------------------------------------------------------- /src/static/css/module/hero.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/hero.less -------------------------------------------------------------------------------- /src/static/css/module/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/index.less -------------------------------------------------------------------------------- /src/static/css/module/layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/layout.less -------------------------------------------------------------------------------- /src/static/css/module/loan-comparison.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/loan-comparison.less -------------------------------------------------------------------------------- /src/static/css/module/loan-options.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/loan-options.less -------------------------------------------------------------------------------- /src/static/css/module/loan-type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/loan-type.less -------------------------------------------------------------------------------- /src/static/css/module/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/mixins.less -------------------------------------------------------------------------------- /src/static/css/module/monthly-payment-worksheet.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/monthly-payment-worksheet.less -------------------------------------------------------------------------------- /src/static/css/module/no-js.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/no-js.less -------------------------------------------------------------------------------- /src/static/css/module/notification.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/notification.less -------------------------------------------------------------------------------- /src/static/css/module/prepare-worksheets.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/prepare-worksheets.less -------------------------------------------------------------------------------- /src/static/css/module/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/print.less -------------------------------------------------------------------------------- /src/static/css/module/process.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/process.less -------------------------------------------------------------------------------- /src/static/css/module/related-links.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/related-links.less -------------------------------------------------------------------------------- /src/static/css/module/social-media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/social-media.less -------------------------------------------------------------------------------- /src/static/css/module/tab.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/tab.less -------------------------------------------------------------------------------- /src/static/css/module/test.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/css/module/typography.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/css/module/typography.less -------------------------------------------------------------------------------- /src/static/fonts/cf-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/fonts/cf-icons.eot -------------------------------------------------------------------------------- /src/static/fonts/cf-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/fonts/cf-icons.svg -------------------------------------------------------------------------------- /src/static/fonts/cf-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/fonts/cf-icons.ttf -------------------------------------------------------------------------------- /src/static/fonts/cf-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/fonts/cf-icons.woff -------------------------------------------------------------------------------- /src/static/img/arm-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/arm-border.png -------------------------------------------------------------------------------- /src/static/img/arm-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/arm-graphic.png -------------------------------------------------------------------------------- /src/static/img/closing-disclosure-H25B-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/closing-disclosure-H25B-1.png -------------------------------------------------------------------------------- /src/static/img/closing-disclosure-H25B-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/closing-disclosure-H25B-2.png -------------------------------------------------------------------------------- /src/static/img/closing-disclosure-H25B-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/closing-disclosure-H25B-3.png -------------------------------------------------------------------------------- /src/static/img/closing-disclosure-H25B-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/closing-disclosure-H25B-4.png -------------------------------------------------------------------------------- /src/static/img/closing-disclosure-H25B-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/closing-disclosure-H25B-5.png -------------------------------------------------------------------------------- /src/static/img/footer_calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/footer_calculator.png -------------------------------------------------------------------------------- /src/static/img/footer_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/footer_chart.png -------------------------------------------------------------------------------- /src/static/img/footer_checklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/footer_checklist.png -------------------------------------------------------------------------------- /src/static/img/footer_closing-forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/footer_closing-forms.png -------------------------------------------------------------------------------- /src/static/img/footer_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/footer_house.png -------------------------------------------------------------------------------- /src/static/img/footer_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/footer_keys.png -------------------------------------------------------------------------------- /src/static/img/footer_loan-estimate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/footer_loan-estimate.png -------------------------------------------------------------------------------- /src/static/img/footer_offers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/footer_offers.png -------------------------------------------------------------------------------- /src/static/img/footer_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/footer_options.png -------------------------------------------------------------------------------- /src/static/img/form-resources_mortgage-closing-hero-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/form-resources_mortgage-closing-hero-large.png -------------------------------------------------------------------------------- /src/static/img/form-resources_mortgage-closing-hero-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/form-resources_mortgage-closing-hero-medium.png -------------------------------------------------------------------------------- /src/static/img/form-resources_mortgage-closing-hero-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/form-resources_mortgage-closing-hero-small.png -------------------------------------------------------------------------------- /src/static/img/form-resources_mortgage-estimate-hero-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/form-resources_mortgage-estimate-hero-large.png -------------------------------------------------------------------------------- /src/static/img/form-resources_mortgage-estimate-hero-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/form-resources_mortgage-estimate-hero-medium.png -------------------------------------------------------------------------------- /src/static/img/form-resources_mortgage-estimate-hero-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/form-resources_mortgage-estimate-hero-small.png -------------------------------------------------------------------------------- /src/static/img/gray-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/gray-bg.png -------------------------------------------------------------------------------- /src/static/img/hero-housekey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/hero-housekey.png -------------------------------------------------------------------------------- /src/static/img/icon_spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/icon_spinner.gif -------------------------------------------------------------------------------- /src/static/img/ill-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/ill-chart.png -------------------------------------------------------------------------------- /src/static/img/ill-form-explainer-closing-disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/ill-form-explainer-closing-disc.png -------------------------------------------------------------------------------- /src/static/img/ill-form-explainer-loan-est.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/ill-form-explainer-loan-est.png -------------------------------------------------------------------------------- /src/static/img/ill-loan-comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/ill-loan-comparison.png -------------------------------------------------------------------------------- /src/static/img/loan-estimate-H24B-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/loan-estimate-H24B-1.png -------------------------------------------------------------------------------- /src/static/img/loan-estimate-H24B-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/loan-estimate-H24B-2.png -------------------------------------------------------------------------------- /src/static/img/loan-estimate-H24B-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/loan-estimate-H24B-3.png -------------------------------------------------------------------------------- /src/static/img/modal-house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/modal-house.png -------------------------------------------------------------------------------- /src/static/img/oah-hero-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/oah-hero-image.png -------------------------------------------------------------------------------- /src/static/img/process_close-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/process_close-small.png -------------------------------------------------------------------------------- /src/static/img/process_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/process_close.png -------------------------------------------------------------------------------- /src/static/img/process_compare-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/process_compare-small.png -------------------------------------------------------------------------------- /src/static/img/process_compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/process_compare.png -------------------------------------------------------------------------------- /src/static/img/process_explore-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/process_explore-small.png -------------------------------------------------------------------------------- /src/static/img/process_explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/process_explore.png -------------------------------------------------------------------------------- /src/static/img/process_maintain-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/process_maintain-small.png -------------------------------------------------------------------------------- /src/static/img/process_maintain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/process_maintain.png -------------------------------------------------------------------------------- /src/static/img/process_prepare-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/process_prepare-small.png -------------------------------------------------------------------------------- /src/static/img/process_prepare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/process_prepare.png -------------------------------------------------------------------------------- /src/static/img/select-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/select-old.png -------------------------------------------------------------------------------- /src/static/img/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/select.png -------------------------------------------------------------------------------- /src/static/img/services-not-shopped-for-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/services-not-shopped-for-highlight.png -------------------------------------------------------------------------------- /src/static/img/slider-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/slider-bg.png -------------------------------------------------------------------------------- /src/static/img/slider-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/slider-handle.png -------------------------------------------------------------------------------- /src/static/img/slider-handle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/slider-handle@2x.png -------------------------------------------------------------------------------- /src/static/img/slider-handle_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/slider-handle_single.png -------------------------------------------------------------------------------- /src/static/img/video_costs_of_buying_home_video_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/img/video_costs_of_buying_home_video_thumbnail.jpg -------------------------------------------------------------------------------- /src/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/app.js -------------------------------------------------------------------------------- /src/static/js/legacy/ie9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/legacy/ie9.js -------------------------------------------------------------------------------- /src/static/js/legacy/lte-ie8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/legacy/lte-ie8.js -------------------------------------------------------------------------------- /src/static/js/modules/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/base.js -------------------------------------------------------------------------------- /src/static/js/modules/clone-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/clone-form.js -------------------------------------------------------------------------------- /src/static/js/modules/closing-disclosure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/closing-disclosure.js -------------------------------------------------------------------------------- /src/static/js/modules/dropdown-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/dropdown-utils.js -------------------------------------------------------------------------------- /src/static/js/modules/email-signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/email-signup.js -------------------------------------------------------------------------------- /src/static/js/modules/explore-rates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/explore-rates.js -------------------------------------------------------------------------------- /src/static/js/modules/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/feedback.js -------------------------------------------------------------------------------- /src/static/js/modules/form-explainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/form-explainer.js -------------------------------------------------------------------------------- /src/static/js/modules/formalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/formalize.js -------------------------------------------------------------------------------- /src/static/js/modules/format-timestamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/format-timestamp.js -------------------------------------------------------------------------------- /src/static/js/modules/geolocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/geolocation.js -------------------------------------------------------------------------------- /src/static/js/modules/highcharts-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/highcharts-theme.js -------------------------------------------------------------------------------- /src/static/js/modules/humanize-loan-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/humanize-loan-type.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/actions/loan-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/actions/loan-actions.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/actions/scenario-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/actions/scenario-actions.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/api.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/common.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/app.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/educational-note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/educational-note.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/input-radio-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/input-radio-group.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/input-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/input-select.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/input-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/input-text.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/interest-rate-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/interest-rate-table.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/loan-input-downpayment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/loan-input-downpayment.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/loan-input-interest-rate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/loan-input-interest-rate.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/loan-input-table-cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/loan-input-table-cell.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/loan-input-table-row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/loan-input-table-row.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/loan-input-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/loan-input-table.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/loan-output-table-cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/loan-output-table-cell.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/loan-output-table-mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/loan-output-table-mobile.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/loan-output-table-row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/loan-output-table-row.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/loan-output-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/loan-output-table.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/loan-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/loan-output.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/message.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/next-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/next-steps.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/output-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/output-alert.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/scenario-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/scenario-button.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/scenario-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/scenario-header.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/scenario-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/scenario-picker.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/scenario-section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/scenario-section.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/styled-numeric-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/styled-numeric-input.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/styled-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/styled-select.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/components/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/components/tooltip.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/constants/loan-constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/constants/loan-constants.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/constants/scenario-constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/constants/scenario-constants.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/dispatcher/app-dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/dispatcher/app-dispatcher.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/mortgage-calculations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/mortgage-calculations.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/position-notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/position-notes.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/stores/loan-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/stores/loan-store.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-comparison/stores/scenario-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-comparison/stores/scenario-store.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-estimate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-estimate.js -------------------------------------------------------------------------------- /src/static/js/modules/loan-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/loan-options.js -------------------------------------------------------------------------------- /src/static/js/modules/local-storage-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/local-storage-polyfill.js -------------------------------------------------------------------------------- /src/static/js/modules/monthly-payment-calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/monthly-payment-calc.js -------------------------------------------------------------------------------- /src/static/js/modules/monthly-payment-worksheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/monthly-payment-worksheet.js -------------------------------------------------------------------------------- /src/static/js/modules/monthly-payment-worksheet/worksheet-output.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/monthly-payment-worksheet/worksheet-output.jsx -------------------------------------------------------------------------------- /src/static/js/modules/mortgage-insurance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/mortgage-insurance.js -------------------------------------------------------------------------------- /src/static/js/modules/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/notification.js -------------------------------------------------------------------------------- /src/static/js/modules/object.observe-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/object.observe-polyfill.js -------------------------------------------------------------------------------- /src/static/js/modules/payment-calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/payment-calc.js -------------------------------------------------------------------------------- /src/static/js/modules/placeholder-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/placeholder-polyfill.js -------------------------------------------------------------------------------- /src/static/js/modules/prepare-worksheets/inputs/button-grading-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/prepare-worksheets/inputs/button-grading-group.js -------------------------------------------------------------------------------- /src/static/js/modules/prepare-worksheets/inputs/input-graded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/prepare-worksheets/inputs/input-graded.js -------------------------------------------------------------------------------- /src/static/js/modules/prepare-worksheets/inputs/input-notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/prepare-worksheets/inputs/input-notes.js -------------------------------------------------------------------------------- /src/static/js/modules/prepare-worksheets/prepare-worksheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/prepare-worksheets/prepare-worksheets.js -------------------------------------------------------------------------------- /src/static/js/modules/prepare-worksheets/util/data-document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/prepare-worksheets/util/data-document.js -------------------------------------------------------------------------------- /src/static/js/modules/prepare-worksheets/util/dom-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/prepare-worksheets/util/dom-helper.js -------------------------------------------------------------------------------- /src/static/js/modules/prepare-worksheets/util/event-observer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/prepare-worksheets/util/event-observer.js -------------------------------------------------------------------------------- /src/static/js/modules/prepare-worksheets/util/location-services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/prepare-worksheets/util/location-services.js -------------------------------------------------------------------------------- /src/static/js/modules/prepare-worksheets/util/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/prepare-worksheets/util/uuid.js -------------------------------------------------------------------------------- /src/static/js/modules/prepare-worksheets/worksheet-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/prepare-worksheets/worksheet-config.js -------------------------------------------------------------------------------- /src/static/js/modules/prepare-worksheets/worksheet-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/prepare-worksheets/worksheet-controller.js -------------------------------------------------------------------------------- /src/static/js/modules/prepare-worksheets/worksheet-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/prepare-worksheets/worksheet-model.js -------------------------------------------------------------------------------- /src/static/js/modules/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/process.js -------------------------------------------------------------------------------- /src/static/js/modules/rates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/rates.js -------------------------------------------------------------------------------- /src/static/js/modules/react-components/formatted-numeric-input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/react-components/formatted-numeric-input.jsx -------------------------------------------------------------------------------- /src/static/js/modules/react-components/input-percent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/react-components/input-percent.jsx -------------------------------------------------------------------------------- /src/static/js/modules/react-components/input-usd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/react-components/input-usd.jsx -------------------------------------------------------------------------------- /src/static/js/modules/react-components/output-usd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/react-components/output-usd.jsx -------------------------------------------------------------------------------- /src/static/js/modules/supports-accessors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/supports-accessors.js -------------------------------------------------------------------------------- /src/static/js/modules/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/tab.js -------------------------------------------------------------------------------- /src/static/js/modules/total-interest-calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/total-interest-calc.js -------------------------------------------------------------------------------- /src/static/js/modules/web-storage-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/modules/web-storage-proxy.js -------------------------------------------------------------------------------- /src/static/js/templates/chart-tooltip-multiple.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/chart-tooltip-multiple.hbs -------------------------------------------------------------------------------- /src/static/js/templates/chart-tooltip-single.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/chart-tooltip-single.hbs -------------------------------------------------------------------------------- /src/static/js/templates/county-conf-warning.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/county-conf-warning.hbs -------------------------------------------------------------------------------- /src/static/js/templates/county-fha-warning.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/county-fha-warning.hbs -------------------------------------------------------------------------------- /src/static/js/templates/county-general-warning.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/county-general-warning.hbs -------------------------------------------------------------------------------- /src/static/js/templates/county-option.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/county-option.hbs -------------------------------------------------------------------------------- /src/static/js/templates/county-va-warning.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/county-va-warning.hbs -------------------------------------------------------------------------------- /src/static/js/templates/credit-alert.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/credit-alert.hbs -------------------------------------------------------------------------------- /src/static/js/templates/down-payment-warning.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/down-payment-warning.hbs -------------------------------------------------------------------------------- /src/static/js/templates/fail-alert.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/fail-alert.hbs -------------------------------------------------------------------------------- /src/static/js/templates/loan-add-button.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/loan-add-button.hbs -------------------------------------------------------------------------------- /src/static/js/templates/loan-form.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/loan-form.hbs -------------------------------------------------------------------------------- /src/static/js/templates/prepare-worksheets/input-graded.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/prepare-worksheets/input-graded.hbs -------------------------------------------------------------------------------- /src/static/js/templates/prepare-worksheets/input-notes.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/prepare-worksheets/input-notes.hbs -------------------------------------------------------------------------------- /src/static/js/templates/prepare-worksheets/page-notes.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/prepare-worksheets/page-notes.hbs -------------------------------------------------------------------------------- /src/static/js/templates/prepare-worksheets/page-summary-error.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/prepare-worksheets/page-summary-error.hbs -------------------------------------------------------------------------------- /src/static/js/templates/prepare-worksheets/page-summary-section.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/prepare-worksheets/page-summary-section.hbs -------------------------------------------------------------------------------- /src/static/js/templates/prepare-worksheets/page-summary.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/prepare-worksheets/page-summary.hbs -------------------------------------------------------------------------------- /src/static/js/templates/prepare-worksheets/page-worksheets.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/prepare-worksheets/page-worksheets.hbs -------------------------------------------------------------------------------- /src/static/js/templates/prepare-worksheets/worksheet-graded-editor.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/prepare-worksheets/worksheet-graded-editor.hbs -------------------------------------------------------------------------------- /src/static/js/templates/prepare-worksheets/worksheet-notes-editor.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/prepare-worksheets/worksheet-notes-editor.hbs -------------------------------------------------------------------------------- /src/static/js/templates/result-alert.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/src/static/js/templates/result-alert.hbs -------------------------------------------------------------------------------- /src/static/js/templates/slider-range-label.hbs: -------------------------------------------------------------------------------- 1 | {{min}} - {{max}} 2 | -------------------------------------------------------------------------------- /test/api_testing/features/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/api_testing/features/environment.py -------------------------------------------------------------------------------- /test/api_testing/features/example-environment.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/api_testing/features/example-environment.cfg -------------------------------------------------------------------------------- /test/api_testing/features/mi.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/api_testing/features/mi.feature -------------------------------------------------------------------------------- /test/api_testing/features/mi_invalid_parameter.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/api_testing/features/mi_invalid_parameter.feature -------------------------------------------------------------------------------- /test/api_testing/features/mi_missing_parameter.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/api_testing/features/mi_missing_parameter.feature -------------------------------------------------------------------------------- /test/api_testing/features/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/api_testing/features/pages/query_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/api_testing/features/pages/query_helper.py -------------------------------------------------------------------------------- /test/api_testing/features/pages/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/api_testing/features/pages/utils.py -------------------------------------------------------------------------------- /test/api_testing/features/rc.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/api_testing/features/rc.feature -------------------------------------------------------------------------------- /test/api_testing/features/rc_invalid_parameter.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/api_testing/features/rc_invalid_parameter.feature -------------------------------------------------------------------------------- /test/api_testing/features/rc_missing_parameter.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/api_testing/features/rc_missing_parameter.feature -------------------------------------------------------------------------------- /test/api_testing/features/steps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/api_testing/features/steps/steps_mi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/api_testing/features/steps/steps_mi.py -------------------------------------------------------------------------------- /test/api_testing/features/steps/steps_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/api_testing/features/steps/steps_rc.py -------------------------------------------------------------------------------- /test/api_testing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/api_testing/requirements.txt -------------------------------------------------------------------------------- /test/browser_testing/features/11_VA_to_jumbo_triggers.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/11_VA_to_jumbo_triggers.feature -------------------------------------------------------------------------------- /test/browser_testing/features/12_VA_to_jumbo_triggers.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/12_VA_to_jumbo_triggers.feature -------------------------------------------------------------------------------- /test/browser_testing/features/1_fha_high_balance.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/1_fha_high_balance.feature -------------------------------------------------------------------------------- /test/browser_testing/features/2_conventional_via_fha.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/2_conventional_via_fha.feature -------------------------------------------------------------------------------- /test/browser_testing/features/3_jumbo_comforming_via_fha.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/3_jumbo_comforming_via_fha.feature -------------------------------------------------------------------------------- /test/browser_testing/features/4_jumbo_non_comforming_via_fha.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/4_jumbo_non_comforming_via_fha.feature -------------------------------------------------------------------------------- /test/browser_testing/features/5_conventional_via_fha_hb.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/5_conventional_via_fha_hb.feature -------------------------------------------------------------------------------- /test/browser_testing/features/6_into_and_out_of_fha_hb.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/6_into_and_out_of_fha_hb.feature -------------------------------------------------------------------------------- /test/browser_testing/features/7_changing_fha_hb.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/7_changing_fha_hb.feature -------------------------------------------------------------------------------- /test/browser_testing/features/8_hb_behavior_with_va.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/8_hb_behavior_with_va.feature -------------------------------------------------------------------------------- /test/browser_testing/features/closing_disclosure.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/closing_disclosure.feature -------------------------------------------------------------------------------- /test/browser_testing/features/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/environment.py -------------------------------------------------------------------------------- /test/browser_testing/features/example-environment.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/example-environment.cfg -------------------------------------------------------------------------------- /test/browser_testing/features/home.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/home.feature -------------------------------------------------------------------------------- /test/browser_testing/features/journey.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/journey.feature -------------------------------------------------------------------------------- /test/browser_testing/features/loan_comparison.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/loan_comparison.feature -------------------------------------------------------------------------------- /test/browser_testing/features/loan_comparison_defaults.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/loan_comparison_defaults.feature -------------------------------------------------------------------------------- /test/browser_testing/features/loan_conventional.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/loan_conventional.feature -------------------------------------------------------------------------------- /test/browser_testing/features/loan_estimate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/loan_estimate.feature -------------------------------------------------------------------------------- /test/browser_testing/features/loan_fha.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/loan_fha.feature -------------------------------------------------------------------------------- /test/browser_testing/features/loan_options.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/loan_options.feature -------------------------------------------------------------------------------- /test/browser_testing/features/loan_options_defaults.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/loan_options_defaults.feature -------------------------------------------------------------------------------- /test/browser_testing/features/loan_special.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/loan_special.feature -------------------------------------------------------------------------------- /test/browser_testing/features/mortgage_closing.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/mortgage_closing.feature -------------------------------------------------------------------------------- /test/browser_testing/features/mortgage_estimate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/mortgage_estimate.feature -------------------------------------------------------------------------------- /test/browser_testing/features/navigation.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/navigation.feature -------------------------------------------------------------------------------- /test/browser_testing/features/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/browser_testing/features/pages/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/pages/base.py -------------------------------------------------------------------------------- /test/browser_testing/features/pages/closing_disclosure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/pages/closing_disclosure.py -------------------------------------------------------------------------------- /test/browser_testing/features/pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/pages/home.py -------------------------------------------------------------------------------- /test/browser_testing/features/pages/journey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/pages/journey.py -------------------------------------------------------------------------------- /test/browser_testing/features/pages/loan_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/pages/loan_comparison.py -------------------------------------------------------------------------------- /test/browser_testing/features/pages/loan_estimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/pages/loan_estimate.py -------------------------------------------------------------------------------- /test/browser_testing/features/pages/loan_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/pages/loan_options.py -------------------------------------------------------------------------------- /test/browser_testing/features/pages/navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/pages/navigation.py -------------------------------------------------------------------------------- /test/browser_testing/features/pages/rate_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/pages/rate_checker.py -------------------------------------------------------------------------------- /test/browser_testing/features/pages/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/pages/screenshot.py -------------------------------------------------------------------------------- /test/browser_testing/features/pages/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/pages/utils.py -------------------------------------------------------------------------------- /test/browser_testing/features/rate_checker.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/rate_checker.feature -------------------------------------------------------------------------------- /test/browser_testing/features/rate_checker_credit_score.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/rate_checker_credit_score.feature -------------------------------------------------------------------------------- /test/browser_testing/features/rate_checker_defaults.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/rate_checker_defaults.feature -------------------------------------------------------------------------------- /test/browser_testing/features/rate_checker_links.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/rate_checker_links.feature -------------------------------------------------------------------------------- /test/browser_testing/features/rate_checker_loan_amount.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/rate_checker_loan_amount.feature -------------------------------------------------------------------------------- /test/browser_testing/features/rate_checker_loan_details.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/rate_checker_loan_details.feature -------------------------------------------------------------------------------- /test/browser_testing/features/steps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/browser_testing/features/steps/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/steps/decorators.py -------------------------------------------------------------------------------- /test/browser_testing/features/steps/steps_closing_disclosure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/steps/steps_closing_disclosure.py -------------------------------------------------------------------------------- /test/browser_testing/features/steps/steps_home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/steps/steps_home.py -------------------------------------------------------------------------------- /test/browser_testing/features/steps/steps_journey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/steps/steps_journey.py -------------------------------------------------------------------------------- /test/browser_testing/features/steps/steps_loan_comparison_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/steps/steps_loan_comparison_common.py -------------------------------------------------------------------------------- /test/browser_testing/features/steps/steps_loan_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/steps/steps_loan_options.py -------------------------------------------------------------------------------- /test/browser_testing/features/steps/steps_navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/steps/steps_navigation.py -------------------------------------------------------------------------------- /test/browser_testing/features/steps/steps_rate_checker_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/steps/steps_rate_checker_common.py -------------------------------------------------------------------------------- /test/browser_testing/features/steps/steps_rate_checker_credit_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/steps/steps_rate_checker_credit_score.py -------------------------------------------------------------------------------- /test/browser_testing/features/steps/steps_rate_checker_loan_amount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/steps/steps_rate_checker_loan_amount.py -------------------------------------------------------------------------------- /test/browser_testing/features/steps/steps_rate_checker_loan_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/features/steps/steps_rate_checker_loan_details.py -------------------------------------------------------------------------------- /test/browser_testing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/browser_testing/requirements.txt -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/index.html -------------------------------------------------------------------------------- /test/jmeter-bootstrap/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/jmeter-bootstrap/.travis.yml -------------------------------------------------------------------------------- /test/jmeter-bootstrap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/jmeter-bootstrap/CONTRIBUTING.md -------------------------------------------------------------------------------- /test/jmeter-bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/jmeter-bootstrap/README.md -------------------------------------------------------------------------------- /test/jmeter-bootstrap/TERMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/jmeter-bootstrap/TERMS.md -------------------------------------------------------------------------------- /test/jmeter-bootstrap/bin/JMeterInstaller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/jmeter-bootstrap/bin/JMeterInstaller.py -------------------------------------------------------------------------------- /test/jmeter-bootstrap/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/jmeter-bootstrap/bin/generate_files_from_jtl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/jmeter-bootstrap/bin/generate_files_from_jtl.sh -------------------------------------------------------------------------------- /test/jmeter-bootstrap/bin/test_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/jmeter-bootstrap/bin/test_installer.py -------------------------------------------------------------------------------- /test/jmeter-bootstrap/tests/jmeter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/jmeter-bootstrap/tests/jmeter.properties -------------------------------------------------------------------------------- /test/jmeter-bootstrap/tests/my_test.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/jmeter-bootstrap/tests/my_test.jmx -------------------------------------------------------------------------------- /test/jmeter-bootstrap/tests/my_test_with_parameters.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/jmeter-bootstrap/tests/my_test_with_parameters.jmx -------------------------------------------------------------------------------- /test/js/app-dispatcher_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/app-dispatcher_test.js -------------------------------------------------------------------------------- /test/js/app_test.js: -------------------------------------------------------------------------------- 1 | // nothing here yet 2 | -------------------------------------------------------------------------------- /test/js/dropdown-utils_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/dropdown-utils_test.js -------------------------------------------------------------------------------- /test/js/fixtures/form-explainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/fixtures/form-explainer.html -------------------------------------------------------------------------------- /test/js/fixtures/prepare-worksheets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/fixtures/prepare-worksheets.html -------------------------------------------------------------------------------- /test/js/form-explainer_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/form-explainer_test.js -------------------------------------------------------------------------------- /test/js/humanize-loan-type_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/humanize-loan-type_test.js -------------------------------------------------------------------------------- /test/js/loan-comparison-api_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/loan-comparison-api_test.js -------------------------------------------------------------------------------- /test/js/loan_store_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/loan_store_test.js -------------------------------------------------------------------------------- /test/js/monthly_payment_calc_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/monthly_payment_calc_test.js -------------------------------------------------------------------------------- /test/js/mortgage_calculations_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/mortgage_calculations_test.js -------------------------------------------------------------------------------- /test/js/payment-calc_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/payment-calc_test.js -------------------------------------------------------------------------------- /test/js/prepare-worksheets_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/prepare-worksheets_test.js -------------------------------------------------------------------------------- /test/js/react_input_percent_test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/react_input_percent_test.jsx -------------------------------------------------------------------------------- /test/js/react_input_usd_test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/react_input_usd_test.jsx -------------------------------------------------------------------------------- /test/js/react_numeric_input_test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/react_numeric_input_test.jsx -------------------------------------------------------------------------------- /test/js/react_output_usd_test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/react_output_usd_test.jsx -------------------------------------------------------------------------------- /test/js/scenario-store_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/scenario-store_test.js -------------------------------------------------------------------------------- /test/js/total-interest_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/js/total-interest_test.js -------------------------------------------------------------------------------- /test/load_testing/MI.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/load_testing/MI.csv -------------------------------------------------------------------------------- /test/load_testing/MortgageInsurance.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/load_testing/MortgageInsurance.jmx -------------------------------------------------------------------------------- /test/load_testing/OaH.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/load_testing/OaH.jmx -------------------------------------------------------------------------------- /test/load_testing/RC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/load_testing/RC.csv -------------------------------------------------------------------------------- /test/load_testing/RateChecker.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/load_testing/RateChecker.jmx -------------------------------------------------------------------------------- /test/load_testing/pdf.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/load_testing/pdf.jmx -------------------------------------------------------------------------------- /test/react_compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/react_compiler.js -------------------------------------------------------------------------------- /test/test_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/owning-a-home/HEAD/test/test_artifacts.sh --------------------------------------------------------------------------------