├── .eslintignore ├── .eslintrc.js ├── .eslintrc.json ├── .gitignore ├── CommunityAllyWebApp.sln ├── Gruntfile.js ├── LICENSE ├── README.md ├── all-user-pages.txt ├── grunt-watch.bat ├── package.json ├── tests ├── input-utils.js ├── page-objects │ ├── building-info.js │ ├── login.js │ └── manage-residents.js ├── protractor-conf.js ├── protractor_log.txt ├── read-only-tests.js ├── run_protractor.bat └── tests │ ├── assessment-history.js │ ├── association-info.js │ ├── calendar.js │ ├── documents.js │ ├── logbook.js │ ├── login.js │ ├── manage-residents.js │ ├── news.js │ ├── polls.js │ ├── sign-up.js │ ├── todo-condo-welcome.js │ └── todo-settings.js └── website ├── PrivacyPolicy.html ├── Scripts └── typings │ ├── angularjs │ ├── angular-animate.d.ts │ ├── angular-component-router.d.ts │ ├── angular-cookies.d.ts │ ├── angular-mocks.d.ts │ ├── angular-resource.d.ts │ ├── angular-route.d.ts │ ├── angular-sanitize.d.ts │ └── angular.d.ts │ ├── googlemaps │ └── google.maps.d.ts │ ├── jquery │ └── jquery.d.ts │ ├── moment │ └── moment.d.ts │ ├── ui-grid │ └── ui-grid.d.ts │ └── underscore │ └── underscore.d.ts ├── TermsOfService.html ├── Web.config ├── assets ├── compiled-css │ ├── bootstrap.min.css │ └── style.css ├── compiled.min.css ├── files │ ├── AllyResidentsImport.csv │ └── SampleTransactionImport.csv ├── images │ ├── Backgrounds │ │ ├── SeamlessBrick16.JPG │ │ ├── brick005.jpg │ │ ├── brick007.jpg │ │ ├── brick015.jpg │ │ ├── brick049.jpg │ │ └── yellow_brick.jpg │ ├── FileIcons │ │ ├── ExcelIcon.png │ │ ├── File_New.png │ │ ├── Folder.png │ │ ├── Folder_New.png │ │ ├── Folder_Open.png │ │ ├── GenericFileIcon.png │ │ ├── ImageIcon.png │ │ ├── Mp4Icon.png │ │ ├── PdfIcon.png │ │ ├── PptxIcon.png │ │ ├── TxtIcon.png │ │ ├── WordIcon.png │ │ └── ZipIcon.png │ ├── MapMarkers │ │ ├── MapMarker_Home.png │ │ ├── MapMarker_Hospital.png │ │ ├── MapMarker_MyHome.png │ │ ├── MapMarker_PostOffice.png │ │ ├── green_1.png │ │ ├── green_10.png │ │ ├── green_2.png │ │ ├── green_3.png │ │ ├── green_4.png │ │ ├── green_5.png │ │ ├── green_6.png │ │ ├── green_7.png │ │ ├── green_8.png │ │ ├── green_9.png │ │ └── green_blank.png │ ├── Spinner_Large.gif │ ├── Spinner_Small.gif │ ├── Untitled-4.png │ ├── alert-icon.png │ ├── animated-overlay.gif │ ├── arrows.png │ ├── bg-menu-main.png │ ├── blank-headshot.png │ ├── check.png │ ├── collapse_blue.jpg │ ├── expand_blue.jpg │ ├── folders-private.png │ ├── folders-public.png │ ├── folders.png │ ├── happy-outline.svg │ ├── header-img-condo-email.png │ ├── header-img-condo.jpg │ ├── header-img-hoa.jpg │ ├── header-img-home.jpg │ ├── header-img-pta.jpg │ ├── header-img-watch.jpg │ ├── header-img.jpg │ ├── icons.png │ ├── icons │ │ ├── Icon-114.png │ │ ├── Icon-120.png │ │ ├── Icon-144.png │ │ ├── Icon-152.png │ │ ├── Icon-167.png │ │ ├── Icon-180.png │ │ ├── Icon-192.png │ │ ├── Icon-196.png │ │ ├── Icon-57.png │ │ └── Icon-72.png │ ├── image.jpg │ ├── paragon-logo-black.png │ ├── pencil-active.png │ ├── pencil-inactive.png │ ├── pin-24-blue.png │ ├── pin-24-gray.png │ ├── radio.png │ ├── search-small.png │ ├── small_wepay_logo.png │ ├── spinner-large.gif │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ ├── ui-bg_flat_75_ffffff_40x100.png │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_glass_75_dadada_1x400.png │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ ├── ui-bg_glass_95_fef1ec_1x400.png │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_2e83ff_256x240.png │ ├── ui-icons_454545_256x240.png │ ├── ui-icons_888888_256x240.png │ ├── ui-icons_cd0a0a_256x240.png │ ├── wepay.png │ ├── white_letter.png │ ├── ws-api-logo.gif │ └── zillow_256.png ├── lib │ └── fullcalendar │ │ ├── fullcalendar.min.css │ │ └── fullcalendar.print.min.css └── scss │ ├── common.scss │ ├── design_v3.scss │ ├── layout.css │ ├── layout.css.map │ ├── layout.scss │ ├── pages │ ├── calendar.scss │ ├── documents │ │ ├── documents.scss │ │ └── info.scss │ ├── home.scss │ ├── manage │ │ ├── assessmenthistory.scss │ │ ├── payments.scss │ │ ├── polls.scss │ │ ├── resident.scss │ │ └── settings.scss │ └── map.scss │ ├── style.css │ ├── style.css.map │ ├── style.scss │ └── variables.scss ├── error-page.html ├── favicon.ico ├── index.html ├── js ├── AllyLibBottom.min.js ├── AllyLibTop.min.js ├── HtmlUtil.js ├── design_v2 │ ├── bootstrap-wysiwyg-old.js │ ├── bootstrap-wysiwyg.js │ ├── jquery.hotkeys.js │ ├── jquery.mCustomScrollbar.concat.min.js │ └── main.js └── lib │ ├── angular │ ├── core │ │ ├── angular-resource.js │ │ ├── angular-route.js │ │ ├── angular-sanitize.js │ │ └── angular.js │ └── third-party │ │ ├── angular-google-maps.min.js │ │ ├── angular-wizard.min.js │ │ ├── checklist-model.js │ │ ├── isteven-multi-select.js │ │ ├── ng-date.js │ │ ├── ng-grid-2.0.11.min.js │ │ ├── ng-grid-flexible-height.js │ │ ├── ng-tags-input.js │ │ ├── ng-xdLocalStorage.js │ │ ├── xd-utils.js │ │ └── xdLocalStorage.js │ ├── calendar │ ├── fullcalendar.js │ ├── moment-timezone-with-data-10-year-range.js │ ├── moment.min.js │ └── ui-calendar.js │ ├── charts │ ├── Chart.min.js │ └── angular-chart.js │ ├── jquery │ ├── jquery-1.12.4.js │ ├── jquery-2.1.0.min.js │ ├── jquery-ui-1.10.3.custom.min.js │ ├── jquery-ui-1.11.2.min.js │ ├── jquery.csv.min.js │ ├── jquery.jeditable.mini.js │ ├── jquery.maskedinput.js │ ├── jquery.timepicker.js │ ├── jquery.validate.min.js │ └── livestamp.min.js │ ├── other │ ├── FileUpload │ │ ├── jquery.fileupload.js │ │ ├── jquery.iframe-transport.js │ │ └── vendor │ │ │ └── jquery.ui.widget.js │ ├── bootstrap.bundle.min.js │ ├── clipboard.js │ ├── diQuery-collapsiblePanel.js │ ├── ie6warning │ │ ├── background_browser.gif │ │ ├── browser_chrome.gif │ │ ├── browser_firefox.gif │ │ ├── browser_ie.gif │ │ ├── browser_opera.gif │ │ ├── browser_safari.gif │ │ └── warning.js │ ├── jquery.qtip.min.js │ ├── jsnlog.min.js │ ├── lodash.compat.min.js │ ├── md5.js │ ├── popper.min.js │ ├── tether.min.js │ └── xeditable.min.js │ └── ui-grid │ ├── ui-grid.css │ ├── ui-grid.eot │ ├── ui-grid.min.js │ ├── ui-grid.svg │ ├── ui-grid.ttf │ └── ui-grid.woff ├── ngApp ├── admin │ ├── manage-address-polys-ctrl.js │ ├── manage-address-polys-ctrl.ts │ ├── manage-address-polys.html │ ├── manage-groups-ctrl.js │ ├── manage-groups-ctrl.ts │ ├── manage-groups.html │ ├── manage-homes-ctrl.js │ ├── manage-homes-ctrl.ts │ ├── manage-homes.html │ ├── view-activity-log-ctrl.js │ ├── view-activity-log-ctrl.ts │ ├── view-activity-log.html │ ├── view-polys-ctrl.js │ ├── view-polys-ctrl.ts │ ├── view-polys.html │ ├── view-research-ctrl.js │ ├── view-research-ctrl.ts │ └── view-research.html ├── ally-app-bundle.js ├── ally-app-bundle.min.js ├── ally-app.js ├── ally-app.ts ├── app-config.js ├── app-config.ts ├── chtn │ ├── manager │ │ ├── dues-history-ctrl.js │ │ ├── dues-history-ctrl.ts │ │ ├── dues-history.html │ │ ├── financial │ │ │ ├── assessment-history-ctrl.js │ │ │ ├── assessment-history-ctrl.ts │ │ │ ├── assessment-history.html │ │ │ ├── budget-tool-ctrl.js │ │ │ ├── budget-tool-ctrl.ts │ │ │ ├── budget-tool.html │ │ │ ├── financial-category-manager-ctrl.js │ │ │ ├── financial-category-manager-ctrl.ts │ │ │ ├── financial-category-manager.html │ │ │ ├── financial-parent.html │ │ │ ├── financial-parent.js │ │ │ ├── financial-parent.ts │ │ │ ├── financial-reports-ctrl.js │ │ │ ├── financial-reports-ctrl.ts │ │ │ ├── financial-reports.html │ │ │ ├── ledger-ctrl.js │ │ │ ├── ledger-ctrl.ts │ │ │ ├── ledger.html │ │ │ ├── manage-payments-ctrl.js │ │ │ ├── manage-payments-ctrl.ts │ │ │ ├── manage-payments.html │ │ │ ├── stripe-link-refresh-ctrl.js │ │ │ ├── stripe-link-refresh-ctrl.ts │ │ │ └── stripe-link-refresh.html │ │ ├── manage-committees-ctrl.js │ │ ├── manage-committees-ctrl.ts │ │ ├── manage-committees.html │ │ ├── manage-custom-pages-ctrl.js │ │ ├── manage-custom-pages-ctrl.ts │ │ ├── manage-custom-pages.html │ │ ├── manage-polls-ctrl.js │ │ ├── manage-polls-ctrl.ts │ │ ├── manage-polls.html │ │ ├── manage-residents-ctrl.js │ │ ├── manage-residents-ctrl.ts │ │ ├── manage-residents.html │ │ └── settings │ │ │ ├── group-amenities.html │ │ │ ├── group-amenities.js │ │ │ ├── group-amenities.ts │ │ │ ├── premium-plan-settings.html │ │ │ ├── premium-plan-settings.js │ │ │ ├── premium-plan-settings.ts │ │ │ ├── settings-parent.html │ │ │ ├── settings-parent.js │ │ │ ├── settings-parent.ts │ │ │ ├── site-settings-ctrl.js │ │ │ ├── site-settings-ctrl.ts │ │ │ └── site-settings.html │ ├── member │ │ ├── association-info-ctrl.js │ │ ├── association-info-ctrl.ts │ │ ├── association-info.html │ │ ├── chtn-home-ctrl.js │ │ ├── chtn-home-ctrl.ts │ │ ├── chtn-home.html │ │ ├── chtn-map-ctrl.js │ │ ├── chtn-map-ctrl.ts │ │ ├── chtn-map.html │ │ ├── forgot-password-ctrl.js │ │ ├── forgot-password-ctrl.ts │ │ ├── forgot-password.html │ │ ├── group-members-ctrl.js │ │ ├── group-members-ctrl.ts │ │ ├── group-members.html │ │ ├── help-ctrl.js │ │ ├── help-ctrl.ts │ │ ├── help.html │ │ ├── logbook-ctrl.js │ │ ├── logbook-ctrl.ts │ │ ├── logbook.html │ │ ├── login-ctrl.js │ │ ├── login-ctrl.ts │ │ ├── login.html │ │ ├── my-profile-ctrl.js │ │ ├── my-profile-ctrl.ts │ │ └── my-profile.html │ └── public │ │ ├── condo-sign-up-wizard.html │ │ ├── condo-sign-up-wizard.js │ │ ├── condo-sign-up-wizard.ts │ │ ├── discussion-manage-ctrl.js │ │ ├── discussion-manage-ctrl.ts │ │ ├── discussion-manage.html │ │ ├── email-abuse-ctrl.js │ │ ├── email-abuse-ctrl.ts │ │ ├── email-abuse.html │ │ ├── hoa-sign-up-wizard.html │ │ ├── hoa-sign-up-wizard.js │ │ ├── hoa-sign-up-wizard.ts │ │ ├── neighbor-sign-up-ctrl.js │ │ ├── neighbor-sign-up-ctrl.ts │ │ ├── neighbor-sign-up.html │ │ ├── neighborhood-sign-up-wizard.html │ │ ├── neighborhood-sign-up-wizard.js │ │ ├── neighborhood-sign-up-wizard.ts │ │ ├── pending-member-sign-up-ctrl.js │ │ ├── pending-member-sign-up-ctrl.ts │ │ └── pending-member-sign-up.html ├── committee │ ├── committee-home-ctrl.js │ ├── committee-home-ctrl.ts │ ├── committee-home.html │ ├── committee-members-ctrl.js │ ├── committee-members-ctrl.ts │ ├── committee-members.html │ ├── committee-members.js │ ├── committee-parent.html │ ├── committee-parent.js │ └── committee-parent.ts ├── common │ ├── FAQs-ctrl.js │ ├── FAQs-ctrl.ts │ ├── FAQs.html │ ├── active-polls-ctrl.js │ ├── active-polls-ctrl.ts │ ├── active-polls.html │ ├── assessment-payment-form-ctrl.js │ ├── assessment-payment-form-ctrl.ts │ ├── assessment-payment-form.html │ ├── custom-page-view-ctrl.js │ ├── custom-page-view-ctrl.ts │ ├── custom-page-view.html │ ├── date-range-picker-ctrl.js │ ├── date-range-picker-ctrl.ts │ ├── date-range-picker.html │ ├── documents-ctrl.js │ ├── documents-ctrl.ts │ ├── documents.html │ ├── financial │ │ ├── resident-transactions-ctrl.js │ │ ├── resident-transactions-ctrl.ts │ │ └── resident-transactions.html │ ├── group-redirect-ctrl.js │ ├── group-redirect-ctrl.ts │ ├── group-redirect.html │ ├── group-send-email-ctrl.js │ ├── group-send-email-ctrl.ts │ ├── group-send-email.html │ ├── local-news-feed-ctrl.js │ ├── local-news-feed-ctrl.ts │ ├── local-news-feed.html │ ├── mailing │ │ ├── mailing-history-ctrl.js │ │ ├── mailing-history-ctrl.ts │ │ ├── mailing-history.html │ │ ├── mailing-invoice-ctrl.js │ │ ├── mailing-invoice-ctrl.ts │ │ ├── mailing-invoice.html │ │ ├── mailing-parent-ctrl.js │ │ ├── mailing-parent-ctrl.ts │ │ └── mailing-parent.html │ ├── maintenance-ctrl.js │ ├── maintenance-ctrl.ts │ ├── maintenance-widget-ctrl.js │ ├── maintenance-widget-ctrl.ts │ ├── maintenance-widget.html │ ├── maintenance.html │ ├── map-util.js │ ├── map-util.ts │ ├── paypal-payment-form-ctrl.js │ ├── paypal-payment-form-ctrl.ts │ ├── paypal-payment-form.html │ ├── preferred-vendor-item-ctrl.js │ ├── preferred-vendor-item-ctrl.ts │ ├── preferred-vendor-item.html │ ├── preferred-vendors-ctrl.js │ ├── preferred-vendors-ctrl.ts │ ├── preferred-vendors.html │ ├── street-address-form-ctrl.js │ ├── street-address-form-ctrl.ts │ └── street-address-form.html ├── home │ ├── home-group-home-ctrl.js │ ├── home-group-home-ctrl.ts │ ├── home-group-home.html │ ├── home-value-widget-ctrl.js │ ├── home-value-widget-ctrl.ts │ ├── home-value-widget.html │ ├── manager │ │ ├── home-users-ctrl.js │ │ ├── home-users-ctrl.ts │ │ └── home-users.html │ └── public │ │ ├── home-sign-up-ctrl.js │ │ ├── home-sign-up-ctrl.ts │ │ └── home-sign-up.html ├── pta │ ├── pta-group-home-ctrl.js │ ├── pta-group-home-ctrl.ts │ └── pta-group-home.html ├── service-ally │ ├── BankInfo.html │ ├── BankInfoCtrl.js │ ├── BusinessInfo.html │ ├── BusinessInfoCtrl.js │ ├── JobsCtrl.js │ └── jobs.html ├── services │ ├── GoogleMapPolyEditorDirective.js │ ├── GoogleMapPolyEditorTemplate.html │ ├── Util.js │ ├── app-cache-service.js │ ├── app-cache-service.ts │ ├── csv-generator.js │ ├── csv-generator.ts │ ├── fellow-residents-service.js │ ├── fellow-residents-service.ts │ ├── group-comment-thread-view-ctrl.js │ ├── group-comment-thread-view-ctrl.ts │ ├── group-comment-thread-view.html │ ├── group-comment-threads-ctrl.js │ ├── group-comment-threads-ctrl.ts │ ├── group-comment-threads.html │ ├── group-comments-ctrl.js │ ├── group-comments-ctrl.ts │ ├── group-comments.html │ ├── html-util.js │ ├── html-util.ts │ ├── maintenance-services.js │ ├── maintenance-services.ts │ ├── send-message-ctrl.js │ ├── send-message-ctrl.ts │ ├── send-message.html │ ├── simple-directives.js │ ├── simple-directives.ts │ ├── simple-filters.js │ ├── simple-filters.ts │ ├── site-info-provider.js │ ├── site-info-provider.ts │ ├── todo-list-ctrl.js │ ├── todo-list-ctrl.ts │ └── todo-list.html └── watch │ ├── manager │ ├── ManageMembers.html │ ├── ManageMembersCtrl.js │ ├── Settings.html │ └── WatchSettingsCtrl.js │ └── member │ ├── WatchCalendar.html │ ├── WatchCalendarCtrl.js │ ├── WatchHome.html │ ├── WatchHomeCtrl.js │ ├── WatchMembers.html │ └── WatchMembersCtrl.js ├── ngTemplates.js ├── ngTemplates.min.js ├── packages.config ├── robots.txt ├── sitemap.xml ├── third-party-css ├── angular-chart.css ├── angular-chart.css.map ├── angular-wizard.min.css ├── animate.css ├── diQuery-collapsiblePanel.css ├── editor.css ├── font-awesome.css ├── fontawesome-webfont.eot ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── fullcalendar.min.css ├── isteven-multi-select.css ├── jquery-ui-1.10.3.custom.css ├── jquery.mCustomScrollbar.css ├── jquery.qtip.min.css ├── jquery.selectbox.css ├── jquery.timepicker.css ├── ng-grid.min.css ├── ng-tags-input.css └── xeditable.css └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/.gitignore -------------------------------------------------------------------------------- /CommunityAllyWebApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/CommunityAllyWebApp.sln -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/README.md -------------------------------------------------------------------------------- /all-user-pages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/all-user-pages.txt -------------------------------------------------------------------------------- /grunt-watch.bat: -------------------------------------------------------------------------------- 1 | grunt watch 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/package.json -------------------------------------------------------------------------------- /tests/input-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/input-utils.js -------------------------------------------------------------------------------- /tests/page-objects/building-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/page-objects/building-info.js -------------------------------------------------------------------------------- /tests/page-objects/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/page-objects/login.js -------------------------------------------------------------------------------- /tests/page-objects/manage-residents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/page-objects/manage-residents.js -------------------------------------------------------------------------------- /tests/protractor-conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/protractor-conf.js -------------------------------------------------------------------------------- /tests/protractor_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/protractor_log.txt -------------------------------------------------------------------------------- /tests/read-only-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/read-only-tests.js -------------------------------------------------------------------------------- /tests/run_protractor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/run_protractor.bat -------------------------------------------------------------------------------- /tests/tests/assessment-history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/tests/assessment-history.js -------------------------------------------------------------------------------- /tests/tests/association-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/tests/association-info.js -------------------------------------------------------------------------------- /tests/tests/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/tests/calendar.js -------------------------------------------------------------------------------- /tests/tests/documents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/tests/documents.js -------------------------------------------------------------------------------- /tests/tests/logbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/tests/logbook.js -------------------------------------------------------------------------------- /tests/tests/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/tests/login.js -------------------------------------------------------------------------------- /tests/tests/manage-residents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/tests/manage-residents.js -------------------------------------------------------------------------------- /tests/tests/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/tests/news.js -------------------------------------------------------------------------------- /tests/tests/polls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/tests/polls.js -------------------------------------------------------------------------------- /tests/tests/sign-up.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/tests/sign-up.js -------------------------------------------------------------------------------- /tests/tests/todo-condo-welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/tests/todo-condo-welcome.js -------------------------------------------------------------------------------- /tests/tests/todo-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/tests/tests/todo-settings.js -------------------------------------------------------------------------------- /website/PrivacyPolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/PrivacyPolicy.html -------------------------------------------------------------------------------- /website/Scripts/typings/angularjs/angular-animate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/Scripts/typings/angularjs/angular-animate.d.ts -------------------------------------------------------------------------------- /website/Scripts/typings/angularjs/angular-component-router.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/Scripts/typings/angularjs/angular-component-router.d.ts -------------------------------------------------------------------------------- /website/Scripts/typings/angularjs/angular-cookies.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/Scripts/typings/angularjs/angular-cookies.d.ts -------------------------------------------------------------------------------- /website/Scripts/typings/angularjs/angular-mocks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/Scripts/typings/angularjs/angular-mocks.d.ts -------------------------------------------------------------------------------- /website/Scripts/typings/angularjs/angular-resource.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/Scripts/typings/angularjs/angular-resource.d.ts -------------------------------------------------------------------------------- /website/Scripts/typings/angularjs/angular-route.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/Scripts/typings/angularjs/angular-route.d.ts -------------------------------------------------------------------------------- /website/Scripts/typings/angularjs/angular-sanitize.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/Scripts/typings/angularjs/angular-sanitize.d.ts -------------------------------------------------------------------------------- /website/Scripts/typings/angularjs/angular.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/Scripts/typings/angularjs/angular.d.ts -------------------------------------------------------------------------------- /website/Scripts/typings/googlemaps/google.maps.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/Scripts/typings/googlemaps/google.maps.d.ts -------------------------------------------------------------------------------- /website/Scripts/typings/jquery/jquery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/Scripts/typings/jquery/jquery.d.ts -------------------------------------------------------------------------------- /website/Scripts/typings/moment/moment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/Scripts/typings/moment/moment.d.ts -------------------------------------------------------------------------------- /website/Scripts/typings/ui-grid/ui-grid.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/Scripts/typings/ui-grid/ui-grid.d.ts -------------------------------------------------------------------------------- /website/Scripts/typings/underscore/underscore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/Scripts/typings/underscore/underscore.d.ts -------------------------------------------------------------------------------- /website/TermsOfService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/TermsOfService.html -------------------------------------------------------------------------------- /website/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/Web.config -------------------------------------------------------------------------------- /website/assets/compiled-css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/compiled-css/bootstrap.min.css -------------------------------------------------------------------------------- /website/assets/compiled-css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/compiled-css/style.css -------------------------------------------------------------------------------- /website/assets/compiled.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/compiled.min.css -------------------------------------------------------------------------------- /website/assets/files/AllyResidentsImport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/files/AllyResidentsImport.csv -------------------------------------------------------------------------------- /website/assets/files/SampleTransactionImport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/files/SampleTransactionImport.csv -------------------------------------------------------------------------------- /website/assets/images/Backgrounds/SeamlessBrick16.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/Backgrounds/SeamlessBrick16.JPG -------------------------------------------------------------------------------- /website/assets/images/Backgrounds/brick005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/Backgrounds/brick005.jpg -------------------------------------------------------------------------------- /website/assets/images/Backgrounds/brick007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/Backgrounds/brick007.jpg -------------------------------------------------------------------------------- /website/assets/images/Backgrounds/brick015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/Backgrounds/brick015.jpg -------------------------------------------------------------------------------- /website/assets/images/Backgrounds/brick049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/Backgrounds/brick049.jpg -------------------------------------------------------------------------------- /website/assets/images/Backgrounds/yellow_brick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/Backgrounds/yellow_brick.jpg -------------------------------------------------------------------------------- /website/assets/images/FileIcons/ExcelIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/FileIcons/ExcelIcon.png -------------------------------------------------------------------------------- /website/assets/images/FileIcons/File_New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/FileIcons/File_New.png -------------------------------------------------------------------------------- /website/assets/images/FileIcons/Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/FileIcons/Folder.png -------------------------------------------------------------------------------- /website/assets/images/FileIcons/Folder_New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/FileIcons/Folder_New.png -------------------------------------------------------------------------------- /website/assets/images/FileIcons/Folder_Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/FileIcons/Folder_Open.png -------------------------------------------------------------------------------- /website/assets/images/FileIcons/GenericFileIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/FileIcons/GenericFileIcon.png -------------------------------------------------------------------------------- /website/assets/images/FileIcons/ImageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/FileIcons/ImageIcon.png -------------------------------------------------------------------------------- /website/assets/images/FileIcons/Mp4Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/FileIcons/Mp4Icon.png -------------------------------------------------------------------------------- /website/assets/images/FileIcons/PdfIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/FileIcons/PdfIcon.png -------------------------------------------------------------------------------- /website/assets/images/FileIcons/PptxIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/FileIcons/PptxIcon.png -------------------------------------------------------------------------------- /website/assets/images/FileIcons/TxtIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/FileIcons/TxtIcon.png -------------------------------------------------------------------------------- /website/assets/images/FileIcons/WordIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/FileIcons/WordIcon.png -------------------------------------------------------------------------------- /website/assets/images/FileIcons/ZipIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/FileIcons/ZipIcon.png -------------------------------------------------------------------------------- /website/assets/images/MapMarkers/MapMarker_Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/MapMarkers/MapMarker_Home.png -------------------------------------------------------------------------------- /website/assets/images/MapMarkers/MapMarker_Hospital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/MapMarkers/MapMarker_Hospital.png -------------------------------------------------------------------------------- /website/assets/images/MapMarkers/MapMarker_MyHome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/MapMarkers/MapMarker_MyHome.png -------------------------------------------------------------------------------- /website/assets/images/MapMarkers/MapMarker_PostOffice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/MapMarkers/MapMarker_PostOffice.png -------------------------------------------------------------------------------- /website/assets/images/MapMarkers/green_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/MapMarkers/green_1.png -------------------------------------------------------------------------------- /website/assets/images/MapMarkers/green_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/MapMarkers/green_10.png -------------------------------------------------------------------------------- /website/assets/images/MapMarkers/green_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/MapMarkers/green_2.png -------------------------------------------------------------------------------- /website/assets/images/MapMarkers/green_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/MapMarkers/green_3.png -------------------------------------------------------------------------------- /website/assets/images/MapMarkers/green_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/MapMarkers/green_4.png -------------------------------------------------------------------------------- /website/assets/images/MapMarkers/green_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/MapMarkers/green_5.png -------------------------------------------------------------------------------- /website/assets/images/MapMarkers/green_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/MapMarkers/green_6.png -------------------------------------------------------------------------------- /website/assets/images/MapMarkers/green_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/MapMarkers/green_7.png -------------------------------------------------------------------------------- /website/assets/images/MapMarkers/green_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/MapMarkers/green_8.png -------------------------------------------------------------------------------- /website/assets/images/MapMarkers/green_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/MapMarkers/green_9.png -------------------------------------------------------------------------------- /website/assets/images/MapMarkers/green_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/MapMarkers/green_blank.png -------------------------------------------------------------------------------- /website/assets/images/Spinner_Large.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/Spinner_Large.gif -------------------------------------------------------------------------------- /website/assets/images/Spinner_Small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/Spinner_Small.gif -------------------------------------------------------------------------------- /website/assets/images/Untitled-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/Untitled-4.png -------------------------------------------------------------------------------- /website/assets/images/alert-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/alert-icon.png -------------------------------------------------------------------------------- /website/assets/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/animated-overlay.gif -------------------------------------------------------------------------------- /website/assets/images/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/arrows.png -------------------------------------------------------------------------------- /website/assets/images/bg-menu-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/bg-menu-main.png -------------------------------------------------------------------------------- /website/assets/images/blank-headshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/blank-headshot.png -------------------------------------------------------------------------------- /website/assets/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/check.png -------------------------------------------------------------------------------- /website/assets/images/collapse_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/collapse_blue.jpg -------------------------------------------------------------------------------- /website/assets/images/expand_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/expand_blue.jpg -------------------------------------------------------------------------------- /website/assets/images/folders-private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/folders-private.png -------------------------------------------------------------------------------- /website/assets/images/folders-public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/folders-public.png -------------------------------------------------------------------------------- /website/assets/images/folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/folders.png -------------------------------------------------------------------------------- /website/assets/images/happy-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/happy-outline.svg -------------------------------------------------------------------------------- /website/assets/images/header-img-condo-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/header-img-condo-email.png -------------------------------------------------------------------------------- /website/assets/images/header-img-condo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/header-img-condo.jpg -------------------------------------------------------------------------------- /website/assets/images/header-img-hoa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/header-img-hoa.jpg -------------------------------------------------------------------------------- /website/assets/images/header-img-home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/header-img-home.jpg -------------------------------------------------------------------------------- /website/assets/images/header-img-pta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/header-img-pta.jpg -------------------------------------------------------------------------------- /website/assets/images/header-img-watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/header-img-watch.jpg -------------------------------------------------------------------------------- /website/assets/images/header-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/header-img.jpg -------------------------------------------------------------------------------- /website/assets/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/icons.png -------------------------------------------------------------------------------- /website/assets/images/icons/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/icons/Icon-114.png -------------------------------------------------------------------------------- /website/assets/images/icons/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/icons/Icon-120.png -------------------------------------------------------------------------------- /website/assets/images/icons/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/icons/Icon-144.png -------------------------------------------------------------------------------- /website/assets/images/icons/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/icons/Icon-152.png -------------------------------------------------------------------------------- /website/assets/images/icons/Icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/icons/Icon-167.png -------------------------------------------------------------------------------- /website/assets/images/icons/Icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/icons/Icon-180.png -------------------------------------------------------------------------------- /website/assets/images/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/icons/Icon-192.png -------------------------------------------------------------------------------- /website/assets/images/icons/Icon-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/icons/Icon-196.png -------------------------------------------------------------------------------- /website/assets/images/icons/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/icons/Icon-57.png -------------------------------------------------------------------------------- /website/assets/images/icons/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/icons/Icon-72.png -------------------------------------------------------------------------------- /website/assets/images/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/image.jpg -------------------------------------------------------------------------------- /website/assets/images/paragon-logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/paragon-logo-black.png -------------------------------------------------------------------------------- /website/assets/images/pencil-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/pencil-active.png -------------------------------------------------------------------------------- /website/assets/images/pencil-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/pencil-inactive.png -------------------------------------------------------------------------------- /website/assets/images/pin-24-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/pin-24-blue.png -------------------------------------------------------------------------------- /website/assets/images/pin-24-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/pin-24-gray.png -------------------------------------------------------------------------------- /website/assets/images/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/radio.png -------------------------------------------------------------------------------- /website/assets/images/search-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/search-small.png -------------------------------------------------------------------------------- /website/assets/images/small_wepay_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/small_wepay_logo.png -------------------------------------------------------------------------------- /website/assets/images/spinner-large.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/spinner-large.gif -------------------------------------------------------------------------------- /website/assets/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /website/assets/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /website/assets/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /website/assets/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /website/assets/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /website/assets/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /website/assets/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /website/assets/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /website/assets/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /website/assets/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /website/assets/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /website/assets/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /website/assets/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /website/assets/images/wepay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/wepay.png -------------------------------------------------------------------------------- /website/assets/images/white_letter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/white_letter.png -------------------------------------------------------------------------------- /website/assets/images/ws-api-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/ws-api-logo.gif -------------------------------------------------------------------------------- /website/assets/images/zillow_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/images/zillow_256.png -------------------------------------------------------------------------------- /website/assets/lib/fullcalendar/fullcalendar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/lib/fullcalendar/fullcalendar.min.css -------------------------------------------------------------------------------- /website/assets/lib/fullcalendar/fullcalendar.print.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/lib/fullcalendar/fullcalendar.print.min.css -------------------------------------------------------------------------------- /website/assets/scss/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/common.scss -------------------------------------------------------------------------------- /website/assets/scss/design_v3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/design_v3.scss -------------------------------------------------------------------------------- /website/assets/scss/layout.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | /*# sourceMappingURL=common.css.map */ 4 | -------------------------------------------------------------------------------- /website/assets/scss/layout.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/layout.css.map -------------------------------------------------------------------------------- /website/assets/scss/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/layout.scss -------------------------------------------------------------------------------- /website/assets/scss/pages/calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/pages/calendar.scss -------------------------------------------------------------------------------- /website/assets/scss/pages/documents/documents.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/pages/documents/documents.scss -------------------------------------------------------------------------------- /website/assets/scss/pages/documents/info.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/pages/documents/info.scss -------------------------------------------------------------------------------- /website/assets/scss/pages/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/pages/home.scss -------------------------------------------------------------------------------- /website/assets/scss/pages/manage/assessmenthistory.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/pages/manage/assessmenthistory.scss -------------------------------------------------------------------------------- /website/assets/scss/pages/manage/payments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/pages/manage/payments.scss -------------------------------------------------------------------------------- /website/assets/scss/pages/manage/polls.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/pages/manage/polls.scss -------------------------------------------------------------------------------- /website/assets/scss/pages/manage/resident.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/pages/manage/resident.scss -------------------------------------------------------------------------------- /website/assets/scss/pages/manage/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/pages/manage/settings.scss -------------------------------------------------------------------------------- /website/assets/scss/pages/map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/pages/map.scss -------------------------------------------------------------------------------- /website/assets/scss/style.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | /*# sourceMappingURL=style.css.map */ 4 | -------------------------------------------------------------------------------- /website/assets/scss/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/style.css.map -------------------------------------------------------------------------------- /website/assets/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/style.scss -------------------------------------------------------------------------------- /website/assets/scss/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/assets/scss/variables.scss -------------------------------------------------------------------------------- /website/error-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/error-page.html -------------------------------------------------------------------------------- /website/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/favicon.ico -------------------------------------------------------------------------------- /website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/index.html -------------------------------------------------------------------------------- /website/js/AllyLibBottom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/AllyLibBottom.min.js -------------------------------------------------------------------------------- /website/js/AllyLibTop.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/AllyLibTop.min.js -------------------------------------------------------------------------------- /website/js/HtmlUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/HtmlUtil.js -------------------------------------------------------------------------------- /website/js/design_v2/bootstrap-wysiwyg-old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/design_v2/bootstrap-wysiwyg-old.js -------------------------------------------------------------------------------- /website/js/design_v2/bootstrap-wysiwyg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/design_v2/bootstrap-wysiwyg.js -------------------------------------------------------------------------------- /website/js/design_v2/jquery.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/design_v2/jquery.hotkeys.js -------------------------------------------------------------------------------- /website/js/design_v2/jquery.mCustomScrollbar.concat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/design_v2/jquery.mCustomScrollbar.concat.min.js -------------------------------------------------------------------------------- /website/js/design_v2/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/design_v2/main.js -------------------------------------------------------------------------------- /website/js/lib/angular/core/angular-resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/angular/core/angular-resource.js -------------------------------------------------------------------------------- /website/js/lib/angular/core/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/angular/core/angular-route.js -------------------------------------------------------------------------------- /website/js/lib/angular/core/angular-sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/angular/core/angular-sanitize.js -------------------------------------------------------------------------------- /website/js/lib/angular/core/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/angular/core/angular.js -------------------------------------------------------------------------------- /website/js/lib/angular/third-party/angular-google-maps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/angular/third-party/angular-google-maps.min.js -------------------------------------------------------------------------------- /website/js/lib/angular/third-party/angular-wizard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/angular/third-party/angular-wizard.min.js -------------------------------------------------------------------------------- /website/js/lib/angular/third-party/checklist-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/angular/third-party/checklist-model.js -------------------------------------------------------------------------------- /website/js/lib/angular/third-party/isteven-multi-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/angular/third-party/isteven-multi-select.js -------------------------------------------------------------------------------- /website/js/lib/angular/third-party/ng-date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/angular/third-party/ng-date.js -------------------------------------------------------------------------------- /website/js/lib/angular/third-party/ng-grid-2.0.11.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/angular/third-party/ng-grid-2.0.11.min.js -------------------------------------------------------------------------------- /website/js/lib/angular/third-party/ng-grid-flexible-height.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/angular/third-party/ng-grid-flexible-height.js -------------------------------------------------------------------------------- /website/js/lib/angular/third-party/ng-tags-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/angular/third-party/ng-tags-input.js -------------------------------------------------------------------------------- /website/js/lib/angular/third-party/ng-xdLocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/angular/third-party/ng-xdLocalStorage.js -------------------------------------------------------------------------------- /website/js/lib/angular/third-party/xd-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/angular/third-party/xd-utils.js -------------------------------------------------------------------------------- /website/js/lib/angular/third-party/xdLocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/angular/third-party/xdLocalStorage.js -------------------------------------------------------------------------------- /website/js/lib/calendar/fullcalendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/calendar/fullcalendar.js -------------------------------------------------------------------------------- /website/js/lib/calendar/moment-timezone-with-data-10-year-range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/calendar/moment-timezone-with-data-10-year-range.js -------------------------------------------------------------------------------- /website/js/lib/calendar/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/calendar/moment.min.js -------------------------------------------------------------------------------- /website/js/lib/calendar/ui-calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/calendar/ui-calendar.js -------------------------------------------------------------------------------- /website/js/lib/charts/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/charts/Chart.min.js -------------------------------------------------------------------------------- /website/js/lib/charts/angular-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/charts/angular-chart.js -------------------------------------------------------------------------------- /website/js/lib/jquery/jquery-1.12.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/jquery/jquery-1.12.4.js -------------------------------------------------------------------------------- /website/js/lib/jquery/jquery-2.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/jquery/jquery-2.1.0.min.js -------------------------------------------------------------------------------- /website/js/lib/jquery/jquery-ui-1.10.3.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/jquery/jquery-ui-1.10.3.custom.min.js -------------------------------------------------------------------------------- /website/js/lib/jquery/jquery-ui-1.11.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/jquery/jquery-ui-1.11.2.min.js -------------------------------------------------------------------------------- /website/js/lib/jquery/jquery.csv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/jquery/jquery.csv.min.js -------------------------------------------------------------------------------- /website/js/lib/jquery/jquery.jeditable.mini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/jquery/jquery.jeditable.mini.js -------------------------------------------------------------------------------- /website/js/lib/jquery/jquery.maskedinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/jquery/jquery.maskedinput.js -------------------------------------------------------------------------------- /website/js/lib/jquery/jquery.timepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/jquery/jquery.timepicker.js -------------------------------------------------------------------------------- /website/js/lib/jquery/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/jquery/jquery.validate.min.js -------------------------------------------------------------------------------- /website/js/lib/jquery/livestamp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/jquery/livestamp.min.js -------------------------------------------------------------------------------- /website/js/lib/other/FileUpload/jquery.fileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/FileUpload/jquery.fileupload.js -------------------------------------------------------------------------------- /website/js/lib/other/FileUpload/jquery.iframe-transport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/FileUpload/jquery.iframe-transport.js -------------------------------------------------------------------------------- /website/js/lib/other/FileUpload/vendor/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/FileUpload/vendor/jquery.ui.widget.js -------------------------------------------------------------------------------- /website/js/lib/other/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /website/js/lib/other/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/clipboard.js -------------------------------------------------------------------------------- /website/js/lib/other/diQuery-collapsiblePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/diQuery-collapsiblePanel.js -------------------------------------------------------------------------------- /website/js/lib/other/ie6warning/background_browser.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/ie6warning/background_browser.gif -------------------------------------------------------------------------------- /website/js/lib/other/ie6warning/browser_chrome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/ie6warning/browser_chrome.gif -------------------------------------------------------------------------------- /website/js/lib/other/ie6warning/browser_firefox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/ie6warning/browser_firefox.gif -------------------------------------------------------------------------------- /website/js/lib/other/ie6warning/browser_ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/ie6warning/browser_ie.gif -------------------------------------------------------------------------------- /website/js/lib/other/ie6warning/browser_opera.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/ie6warning/browser_opera.gif -------------------------------------------------------------------------------- /website/js/lib/other/ie6warning/browser_safari.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/ie6warning/browser_safari.gif -------------------------------------------------------------------------------- /website/js/lib/other/ie6warning/warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/ie6warning/warning.js -------------------------------------------------------------------------------- /website/js/lib/other/jquery.qtip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/jquery.qtip.min.js -------------------------------------------------------------------------------- /website/js/lib/other/jsnlog.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/jsnlog.min.js -------------------------------------------------------------------------------- /website/js/lib/other/lodash.compat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/lodash.compat.min.js -------------------------------------------------------------------------------- /website/js/lib/other/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/md5.js -------------------------------------------------------------------------------- /website/js/lib/other/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/popper.min.js -------------------------------------------------------------------------------- /website/js/lib/other/tether.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/tether.min.js -------------------------------------------------------------------------------- /website/js/lib/other/xeditable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/other/xeditable.min.js -------------------------------------------------------------------------------- /website/js/lib/ui-grid/ui-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/ui-grid/ui-grid.css -------------------------------------------------------------------------------- /website/js/lib/ui-grid/ui-grid.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/ui-grid/ui-grid.eot -------------------------------------------------------------------------------- /website/js/lib/ui-grid/ui-grid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/ui-grid/ui-grid.min.js -------------------------------------------------------------------------------- /website/js/lib/ui-grid/ui-grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/ui-grid/ui-grid.svg -------------------------------------------------------------------------------- /website/js/lib/ui-grid/ui-grid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/ui-grid/ui-grid.ttf -------------------------------------------------------------------------------- /website/js/lib/ui-grid/ui-grid.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/js/lib/ui-grid/ui-grid.woff -------------------------------------------------------------------------------- /website/ngApp/admin/manage-address-polys-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/manage-address-polys-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/admin/manage-address-polys-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/manage-address-polys-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/admin/manage-address-polys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/manage-address-polys.html -------------------------------------------------------------------------------- /website/ngApp/admin/manage-groups-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/manage-groups-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/admin/manage-groups-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/manage-groups-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/admin/manage-groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/manage-groups.html -------------------------------------------------------------------------------- /website/ngApp/admin/manage-homes-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/manage-homes-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/admin/manage-homes-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/manage-homes-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/admin/manage-homes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/manage-homes.html -------------------------------------------------------------------------------- /website/ngApp/admin/view-activity-log-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/view-activity-log-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/admin/view-activity-log-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/view-activity-log-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/admin/view-activity-log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/view-activity-log.html -------------------------------------------------------------------------------- /website/ngApp/admin/view-polys-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/view-polys-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/admin/view-polys-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/view-polys-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/admin/view-polys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/view-polys.html -------------------------------------------------------------------------------- /website/ngApp/admin/view-research-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/view-research-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/admin/view-research-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/view-research-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/admin/view-research.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/admin/view-research.html -------------------------------------------------------------------------------- /website/ngApp/ally-app-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/ally-app-bundle.js -------------------------------------------------------------------------------- /website/ngApp/ally-app-bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/ally-app-bundle.min.js -------------------------------------------------------------------------------- /website/ngApp/ally-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/ally-app.js -------------------------------------------------------------------------------- /website/ngApp/ally-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/ally-app.ts -------------------------------------------------------------------------------- /website/ngApp/app-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/app-config.js -------------------------------------------------------------------------------- /website/ngApp/app-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/app-config.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/dues-history-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/dues-history-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/dues-history-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/dues-history-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/dues-history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/dues-history.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/assessment-history-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/assessment-history-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/assessment-history-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/assessment-history-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/assessment-history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/assessment-history.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/budget-tool-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/budget-tool-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/budget-tool-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/budget-tool-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/budget-tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/budget-tool.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/financial-category-manager-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/financial-category-manager-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/financial-category-manager-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/financial-category-manager-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/financial-category-manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/financial-category-manager.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/financial-parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/financial-parent.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/financial-parent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/financial-parent.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/financial-parent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/financial-parent.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/financial-reports-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/financial-reports-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/financial-reports-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/financial-reports-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/financial-reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/financial-reports.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/ledger-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/ledger-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/ledger-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/ledger-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/ledger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/ledger.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/manage-payments-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/manage-payments-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/manage-payments-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/manage-payments-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/manage-payments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/manage-payments.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/stripe-link-refresh-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/stripe-link-refresh-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/stripe-link-refresh-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/stripe-link-refresh-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/financial/stripe-link-refresh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/financial/stripe-link-refresh.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/manage-committees-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/manage-committees-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/manage-committees-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/manage-committees-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/manage-committees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/manage-committees.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/manage-custom-pages-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/manage-custom-pages-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/manage-custom-pages-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/manage-custom-pages-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/manage-custom-pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/manage-custom-pages.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/manage-polls-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/manage-polls-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/manage-polls-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/manage-polls-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/manage-polls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/manage-polls.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/manage-residents-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/manage-residents-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/manage-residents-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/manage-residents-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/manage-residents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/manage-residents.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/settings/group-amenities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/settings/group-amenities.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/settings/group-amenities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/settings/group-amenities.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/settings/group-amenities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/settings/group-amenities.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/settings/premium-plan-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/settings/premium-plan-settings.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/settings/premium-plan-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/settings/premium-plan-settings.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/settings/premium-plan-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/settings/premium-plan-settings.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/settings/settings-parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/settings/settings-parent.html -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/settings/settings-parent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/settings/settings-parent.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/settings/settings-parent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/settings/settings-parent.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/settings/site-settings-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/settings/site-settings-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/settings/site-settings-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/settings/site-settings-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/manager/settings/site-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/manager/settings/site-settings.html -------------------------------------------------------------------------------- /website/ngApp/chtn/member/association-info-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/association-info-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/member/association-info-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/association-info-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/member/association-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/association-info.html -------------------------------------------------------------------------------- /website/ngApp/chtn/member/chtn-home-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/chtn-home-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/member/chtn-home-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/chtn-home-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/member/chtn-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/chtn-home.html -------------------------------------------------------------------------------- /website/ngApp/chtn/member/chtn-map-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/chtn-map-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/member/chtn-map-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/chtn-map-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/member/chtn-map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/chtn-map.html -------------------------------------------------------------------------------- /website/ngApp/chtn/member/forgot-password-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/forgot-password-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/member/forgot-password-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/forgot-password-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/member/forgot-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/forgot-password.html -------------------------------------------------------------------------------- /website/ngApp/chtn/member/group-members-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/group-members-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/member/group-members-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/group-members-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/member/group-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/group-members.html -------------------------------------------------------------------------------- /website/ngApp/chtn/member/help-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/help-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/member/help-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/help-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/member/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/help.html -------------------------------------------------------------------------------- /website/ngApp/chtn/member/logbook-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/logbook-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/member/logbook-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/logbook-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/member/logbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/logbook.html -------------------------------------------------------------------------------- /website/ngApp/chtn/member/login-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/login-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/member/login-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/login-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/member/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/login.html -------------------------------------------------------------------------------- /website/ngApp/chtn/member/my-profile-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/my-profile-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/member/my-profile-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/my-profile-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/member/my-profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/member/my-profile.html -------------------------------------------------------------------------------- /website/ngApp/chtn/public/condo-sign-up-wizard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/condo-sign-up-wizard.html -------------------------------------------------------------------------------- /website/ngApp/chtn/public/condo-sign-up-wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/condo-sign-up-wizard.js -------------------------------------------------------------------------------- /website/ngApp/chtn/public/condo-sign-up-wizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/condo-sign-up-wizard.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/public/discussion-manage-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/discussion-manage-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/public/discussion-manage-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/discussion-manage-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/public/discussion-manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/discussion-manage.html -------------------------------------------------------------------------------- /website/ngApp/chtn/public/email-abuse-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/email-abuse-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/public/email-abuse-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/email-abuse-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/public/email-abuse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/email-abuse.html -------------------------------------------------------------------------------- /website/ngApp/chtn/public/hoa-sign-up-wizard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/hoa-sign-up-wizard.html -------------------------------------------------------------------------------- /website/ngApp/chtn/public/hoa-sign-up-wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/hoa-sign-up-wizard.js -------------------------------------------------------------------------------- /website/ngApp/chtn/public/hoa-sign-up-wizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/hoa-sign-up-wizard.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/public/neighbor-sign-up-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/neighbor-sign-up-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/public/neighbor-sign-up-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/neighbor-sign-up-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/public/neighbor-sign-up.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/neighbor-sign-up.html -------------------------------------------------------------------------------- /website/ngApp/chtn/public/neighborhood-sign-up-wizard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/neighborhood-sign-up-wizard.html -------------------------------------------------------------------------------- /website/ngApp/chtn/public/neighborhood-sign-up-wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/neighborhood-sign-up-wizard.js -------------------------------------------------------------------------------- /website/ngApp/chtn/public/neighborhood-sign-up-wizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/neighborhood-sign-up-wizard.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/public/pending-member-sign-up-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/pending-member-sign-up-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/chtn/public/pending-member-sign-up-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/pending-member-sign-up-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/chtn/public/pending-member-sign-up.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/chtn/public/pending-member-sign-up.html -------------------------------------------------------------------------------- /website/ngApp/committee/committee-home-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/committee/committee-home-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/committee/committee-home-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/committee/committee-home-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/committee/committee-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/committee/committee-home.html -------------------------------------------------------------------------------- /website/ngApp/committee/committee-members-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/committee/committee-members-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/committee/committee-members-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/committee/committee-members-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/committee/committee-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/committee/committee-members.html -------------------------------------------------------------------------------- /website/ngApp/committee/committee-members.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/ngApp/committee/committee-parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/committee/committee-parent.html -------------------------------------------------------------------------------- /website/ngApp/committee/committee-parent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/committee/committee-parent.js -------------------------------------------------------------------------------- /website/ngApp/committee/committee-parent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/committee/committee-parent.ts -------------------------------------------------------------------------------- /website/ngApp/common/FAQs-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/FAQs-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/FAQs-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/FAQs-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/FAQs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/FAQs.html -------------------------------------------------------------------------------- /website/ngApp/common/active-polls-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/active-polls-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/active-polls-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/active-polls-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/active-polls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/active-polls.html -------------------------------------------------------------------------------- /website/ngApp/common/assessment-payment-form-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/assessment-payment-form-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/assessment-payment-form-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/assessment-payment-form-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/assessment-payment-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/assessment-payment-form.html -------------------------------------------------------------------------------- /website/ngApp/common/custom-page-view-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/custom-page-view-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/custom-page-view-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/custom-page-view-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/custom-page-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/custom-page-view.html -------------------------------------------------------------------------------- /website/ngApp/common/date-range-picker-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/date-range-picker-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/date-range-picker-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/date-range-picker-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/date-range-picker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/date-range-picker.html -------------------------------------------------------------------------------- /website/ngApp/common/documents-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/documents-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/documents-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/documents-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/documents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/documents.html -------------------------------------------------------------------------------- /website/ngApp/common/financial/resident-transactions-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/financial/resident-transactions-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/financial/resident-transactions-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/financial/resident-transactions-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/financial/resident-transactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/financial/resident-transactions.html -------------------------------------------------------------------------------- /website/ngApp/common/group-redirect-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/group-redirect-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/group-redirect-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/group-redirect-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/group-redirect.html: -------------------------------------------------------------------------------- 1 |
2 |
-------------------------------------------------------------------------------- /website/ngApp/common/group-send-email-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/group-send-email-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/group-send-email-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/group-send-email-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/group-send-email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/group-send-email.html -------------------------------------------------------------------------------- /website/ngApp/common/local-news-feed-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/local-news-feed-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/local-news-feed-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/local-news-feed-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/local-news-feed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/local-news-feed.html -------------------------------------------------------------------------------- /website/ngApp/common/mailing/mailing-history-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/mailing/mailing-history-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/mailing/mailing-history-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/mailing/mailing-history-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/mailing/mailing-history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/mailing/mailing-history.html -------------------------------------------------------------------------------- /website/ngApp/common/mailing/mailing-invoice-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/mailing/mailing-invoice-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/mailing/mailing-invoice-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/mailing/mailing-invoice-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/mailing/mailing-invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/mailing/mailing-invoice.html -------------------------------------------------------------------------------- /website/ngApp/common/mailing/mailing-parent-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/mailing/mailing-parent-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/mailing/mailing-parent-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/mailing/mailing-parent-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/mailing/mailing-parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/mailing/mailing-parent.html -------------------------------------------------------------------------------- /website/ngApp/common/maintenance-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/maintenance-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/maintenance-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/maintenance-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/maintenance-widget-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/maintenance-widget-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/maintenance-widget-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/maintenance-widget-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/maintenance-widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/maintenance-widget.html -------------------------------------------------------------------------------- /website/ngApp/common/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/maintenance.html -------------------------------------------------------------------------------- /website/ngApp/common/map-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/map-util.js -------------------------------------------------------------------------------- /website/ngApp/common/map-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/map-util.ts -------------------------------------------------------------------------------- /website/ngApp/common/paypal-payment-form-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/paypal-payment-form-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/paypal-payment-form-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/paypal-payment-form-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/paypal-payment-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/paypal-payment-form.html -------------------------------------------------------------------------------- /website/ngApp/common/preferred-vendor-item-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/preferred-vendor-item-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/preferred-vendor-item-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/preferred-vendor-item-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/preferred-vendor-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/preferred-vendor-item.html -------------------------------------------------------------------------------- /website/ngApp/common/preferred-vendors-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/preferred-vendors-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/preferred-vendors-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/preferred-vendors-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/preferred-vendors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/preferred-vendors.html -------------------------------------------------------------------------------- /website/ngApp/common/street-address-form-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/street-address-form-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/common/street-address-form-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/street-address-form-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/common/street-address-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/common/street-address-form.html -------------------------------------------------------------------------------- /website/ngApp/home/home-group-home-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/home/home-group-home-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/home/home-group-home-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/home/home-group-home-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/home/home-group-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/home/home-group-home.html -------------------------------------------------------------------------------- /website/ngApp/home/home-value-widget-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/home/home-value-widget-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/home/home-value-widget-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/home/home-value-widget-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/home/home-value-widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/home/home-value-widget.html -------------------------------------------------------------------------------- /website/ngApp/home/manager/home-users-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/home/manager/home-users-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/home/manager/home-users-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/home/manager/home-users-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/home/manager/home-users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/home/manager/home-users.html -------------------------------------------------------------------------------- /website/ngApp/home/public/home-sign-up-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/home/public/home-sign-up-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/home/public/home-sign-up-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/home/public/home-sign-up-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/home/public/home-sign-up.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/home/public/home-sign-up.html -------------------------------------------------------------------------------- /website/ngApp/pta/pta-group-home-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/pta/pta-group-home-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/pta/pta-group-home-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/pta/pta-group-home-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/pta/pta-group-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/pta/pta-group-home.html -------------------------------------------------------------------------------- /website/ngApp/service-ally/BankInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/service-ally/BankInfo.html -------------------------------------------------------------------------------- /website/ngApp/service-ally/BankInfoCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/service-ally/BankInfoCtrl.js -------------------------------------------------------------------------------- /website/ngApp/service-ally/BusinessInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/service-ally/BusinessInfo.html -------------------------------------------------------------------------------- /website/ngApp/service-ally/BusinessInfoCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/service-ally/BusinessInfoCtrl.js -------------------------------------------------------------------------------- /website/ngApp/service-ally/JobsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/service-ally/JobsCtrl.js -------------------------------------------------------------------------------- /website/ngApp/service-ally/jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/service-ally/jobs.html -------------------------------------------------------------------------------- /website/ngApp/services/GoogleMapPolyEditorDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/GoogleMapPolyEditorDirective.js -------------------------------------------------------------------------------- /website/ngApp/services/GoogleMapPolyEditorTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/GoogleMapPolyEditorTemplate.html -------------------------------------------------------------------------------- /website/ngApp/services/Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/Util.js -------------------------------------------------------------------------------- /website/ngApp/services/app-cache-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/app-cache-service.js -------------------------------------------------------------------------------- /website/ngApp/services/app-cache-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/app-cache-service.ts -------------------------------------------------------------------------------- /website/ngApp/services/csv-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/csv-generator.js -------------------------------------------------------------------------------- /website/ngApp/services/csv-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/csv-generator.ts -------------------------------------------------------------------------------- /website/ngApp/services/fellow-residents-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/fellow-residents-service.js -------------------------------------------------------------------------------- /website/ngApp/services/fellow-residents-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/fellow-residents-service.ts -------------------------------------------------------------------------------- /website/ngApp/services/group-comment-thread-view-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/group-comment-thread-view-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/services/group-comment-thread-view-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/group-comment-thread-view-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/services/group-comment-thread-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/group-comment-thread-view.html -------------------------------------------------------------------------------- /website/ngApp/services/group-comment-threads-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/group-comment-threads-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/services/group-comment-threads-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/group-comment-threads-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/services/group-comment-threads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/group-comment-threads.html -------------------------------------------------------------------------------- /website/ngApp/services/group-comments-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/group-comments-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/services/group-comments-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/group-comments-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/services/group-comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/group-comments.html -------------------------------------------------------------------------------- /website/ngApp/services/html-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/html-util.js -------------------------------------------------------------------------------- /website/ngApp/services/html-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/html-util.ts -------------------------------------------------------------------------------- /website/ngApp/services/maintenance-services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/maintenance-services.js -------------------------------------------------------------------------------- /website/ngApp/services/maintenance-services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/maintenance-services.ts -------------------------------------------------------------------------------- /website/ngApp/services/send-message-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/send-message-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/services/send-message-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/send-message-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/services/send-message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/send-message.html -------------------------------------------------------------------------------- /website/ngApp/services/simple-directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/simple-directives.js -------------------------------------------------------------------------------- /website/ngApp/services/simple-directives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/simple-directives.ts -------------------------------------------------------------------------------- /website/ngApp/services/simple-filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/simple-filters.js -------------------------------------------------------------------------------- /website/ngApp/services/simple-filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/simple-filters.ts -------------------------------------------------------------------------------- /website/ngApp/services/site-info-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/site-info-provider.js -------------------------------------------------------------------------------- /website/ngApp/services/site-info-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/site-info-provider.ts -------------------------------------------------------------------------------- /website/ngApp/services/todo-list-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/todo-list-ctrl.js -------------------------------------------------------------------------------- /website/ngApp/services/todo-list-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/todo-list-ctrl.ts -------------------------------------------------------------------------------- /website/ngApp/services/todo-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/services/todo-list.html -------------------------------------------------------------------------------- /website/ngApp/watch/manager/ManageMembers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/watch/manager/ManageMembers.html -------------------------------------------------------------------------------- /website/ngApp/watch/manager/ManageMembersCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/watch/manager/ManageMembersCtrl.js -------------------------------------------------------------------------------- /website/ngApp/watch/manager/Settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/watch/manager/Settings.html -------------------------------------------------------------------------------- /website/ngApp/watch/manager/WatchSettingsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/watch/manager/WatchSettingsCtrl.js -------------------------------------------------------------------------------- /website/ngApp/watch/member/WatchCalendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/watch/member/WatchCalendar.html -------------------------------------------------------------------------------- /website/ngApp/watch/member/WatchCalendarCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/watch/member/WatchCalendarCtrl.js -------------------------------------------------------------------------------- /website/ngApp/watch/member/WatchHome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/watch/member/WatchHome.html -------------------------------------------------------------------------------- /website/ngApp/watch/member/WatchHomeCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/watch/member/WatchHomeCtrl.js -------------------------------------------------------------------------------- /website/ngApp/watch/member/WatchMembers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/watch/member/WatchMembers.html -------------------------------------------------------------------------------- /website/ngApp/watch/member/WatchMembersCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngApp/watch/member/WatchMembersCtrl.js -------------------------------------------------------------------------------- /website/ngTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngTemplates.js -------------------------------------------------------------------------------- /website/ngTemplates.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/ngTemplates.min.js -------------------------------------------------------------------------------- /website/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/packages.config -------------------------------------------------------------------------------- /website/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/robots.txt -------------------------------------------------------------------------------- /website/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/sitemap.xml -------------------------------------------------------------------------------- /website/third-party-css/angular-chart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/angular-chart.css -------------------------------------------------------------------------------- /website/third-party-css/angular-chart.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/angular-chart.css.map -------------------------------------------------------------------------------- /website/third-party-css/angular-wizard.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/angular-wizard.min.css -------------------------------------------------------------------------------- /website/third-party-css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/animate.css -------------------------------------------------------------------------------- /website/third-party-css/diQuery-collapsiblePanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/diQuery-collapsiblePanel.css -------------------------------------------------------------------------------- /website/third-party-css/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/editor.css -------------------------------------------------------------------------------- /website/third-party-css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/font-awesome.css -------------------------------------------------------------------------------- /website/third-party-css/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/fontawesome-webfont.eot -------------------------------------------------------------------------------- /website/third-party-css/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /website/third-party-css/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/fontawesome-webfont.woff -------------------------------------------------------------------------------- /website/third-party-css/fullcalendar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/fullcalendar.min.css -------------------------------------------------------------------------------- /website/third-party-css/isteven-multi-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/isteven-multi-select.css -------------------------------------------------------------------------------- /website/third-party-css/jquery-ui-1.10.3.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/jquery-ui-1.10.3.custom.css -------------------------------------------------------------------------------- /website/third-party-css/jquery.mCustomScrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/jquery.mCustomScrollbar.css -------------------------------------------------------------------------------- /website/third-party-css/jquery.qtip.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/jquery.qtip.min.css -------------------------------------------------------------------------------- /website/third-party-css/jquery.selectbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/jquery.selectbox.css -------------------------------------------------------------------------------- /website/third-party-css/jquery.timepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/jquery.timepicker.css -------------------------------------------------------------------------------- /website/third-party-css/ng-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/ng-grid.min.css -------------------------------------------------------------------------------- /website/third-party-css/ng-tags-input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/ng-tags-input.css -------------------------------------------------------------------------------- /website/third-party-css/xeditable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/third-party-css/xeditable.css -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ambesawi/HOA_CommunityAllyWebApp/HEAD/website/tsconfig.json --------------------------------------------------------------------------------