Skip to content

Instantly share code, notes, and snippets.

@sonicparke
Created June 15, 2015 16:00
Show Gist options
  • Save sonicparke/512859cade2df8dd3787 to your computer and use it in GitHub Desktop.
Save sonicparke/512859cade2df8dd3787 to your computer and use it in GitHub Desktop.
Karma-coverage
// Karma configuration
// Generated on Tue Sep 24 2013 17:56:40 GMT-0400 (EDT)
module.exports = function(config) {
config.set({
preprocessors: {
'src/**/!(*test).js': ['coverage'],
// 'build/**/!(webtrends).js': ['coverage'],
// 'src/!(webtrends)/*.html': ['coverage'],
// 'build/*.html': ['coverage'],
// 'build/**/**/*.js': ['coverage'],
'src/**/*.html': ['ng-html2js', 'coverage'],
'src/**/**/*.js': ['coverage']
},
reporters: ['progress', 'coverage'],
coverageReporter: {
reporters: [
{ type: 'html'},
{ type: 'text-summary'}
]
},
proxyValidateSSL: true,
sauceLabs: {
username: process.env.SAUCE_USER_NAME,
accessKey: process.env.SAUCE_API_KEY,
startConnect: false,
testName: 'karma unit tests'
},
customLaunchers: {
sl_ie8_winxp: {
base: 'SauceLabs',
browserName: 'internet explorer',
platform: 'Windows XP',
version: '8'
},
sl_chrome_windows: {
base: 'SauceLabs',
browserName: 'chrome',
platform: 'Windows 7'
},
saucyBrowsers: {
base: 'SauceLabs',
browserName: process.env.SELENIUM_BROWSER,
platform: process.env.SELENIUM_PLATFORM,
version: process.env.SELENIUM_VERSION
}
},
// base path, that will be used to resolve files and exclude
basePath: '',
// frameworks to use
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [
'build/js/selectivizr.js',
'build/js/respond.src.js',
'build/js/jquery.js',
'build/js/angular.js',
'build/js/angular-cookies.js',
'build/js/angular-cookie.js',
'build/js/angular-ui-router.js',
'build/js/angular-resource.js',
'build/js/angular-mocks.js',
'build/js/angular-animate.js',
'build/js/angular-translate.js',
'build/js/ui-bootstrap-tpls.js',
'build/js/angular-ui-select2.js',
'build/js/angular-sanitize.js',
'build/js/angular-vertilize.js',
'build/js/angular-shims-placeholder.js',
'build/js/angular-isotope.js',
'build/js/ui-utils.min.js',
'build/js/underscore.js',
'build/js/leaflet.js',
'build/js/angular-leaflet-directive.js',
'build/js/uuid.js',
'src/**/*.js',
'build/**/app*.js',
'build/js/*tpls.js',
'build/**/common*.js',
'build/**/share/*.js',
'build/**/compare*.js',
'build/**/profile*.js',
'build/**/search*.js',
'src/*.html',
'src/**/*.html',
'tests/tests.utility.js',
'http://maps.googleapis.com/maps/api/js?sensor=false&language=en',
{pattern: 'build/json/*.json', watched: true, served: true, included: false}
],
ngHtml2JsPreprocessor: {
// setting this option will create only a single module that contains templates
stripPrefix: 'src/',
moduleName: 'templates'
},
// list of files to exclude
exclude: [
],
// web server port
port: 9999,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_DEBUG,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: false,
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera
// - Safari (only Mac)
// - PhantomJS
// - IE (only Windows)
browsers: ['PhantomJS'],
// If browser does not capture in given timeout [ms], kill it
captureTimeout: 30000,
// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun: true
});
};
├── app
│   ├── app.acl.js
│   ├── app.config.js
│   ├── app.config.post.bootstrap.js
│   ├── app.constants.js
│   ├── app.controller.js
│   ├── app.controllers.js
│   ├── app.dynamic.css.js
│   ├── app.errors.js
│   ├── app.features.js
│   ├── app.i18n.js
│   ├── app.js
│   ├── app.localStorage.js
│   ├── app.pcp.js
│   ├── app.procedures.js
│   ├── app.procedures.test.js
│   ├── app.services.js
│   ├── app.theming
│   │   ├── avmed
│   │   │   ├── fonts
│   │   │   │   ├── SimplonBP-Bold.woff
│   │   │   │   ├── SimplonBP-BoldItalic.woff
│   │   │   │   ├── SimplonBP-Light.woff
│   │   │   │   ├── SimplonBP-LightItalic.woff
│   │   │   │   ├── SimplonBP-Medium.woff
│   │   │   │   ├── SimplonBP-MediumItalic.woff
│   │   │   │   ├── SimplonBP-Regular.woff
│   │   │   │   ├── SimplonBP-RegularItalic.woff
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   ├── vitalschoice-glyphs.eot
│   │   │   │   ├── vitalschoice-glyphs.svg
│   │   │   │   ├── vitalschoice-glyphs.ttf
│   │   │   │   └── vitalschoice-glyphs.woff
│   │   │   ├── grunt_configuration.json
│   │   │   ├── img
│   │   │   │   ├── homepage-background.jpg
│   │   │   │   ├── sprite-1x.png
│   │   │   │   ├── sprite-2x.png
│   │   │   │   └── subpage-background.jpg
│   │   │   └── less
│   │   │   ├── app-theming-variables.less
│   │   │   └── app.less
│   │   ├── bcbsma
│   │   │   ├── README.md
│   │   │   ├── fonts
│   │   │   │   ├── SimplonBP-Bold.woff
│   │   │   │   ├── SimplonBP-BoldItalic.woff
│   │   │   │   ├── SimplonBP-Light.woff
│   │   │   │   ├── SimplonBP-LightItalic.woff
│   │   │   │   ├── SimplonBP-Medium.woff
│   │   │   │   ├── SimplonBP-MediumItalic.woff
│   │   │   │   ├── SimplonBP-Regular.woff
│   │   │   │   ├── SimplonBP-RegularItalic.woff
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   ├── vitalschoice-glyphs.eot
│   │   │   │   ├── vitalschoice-glyphs.svg
│   │   │   │   ├── vitalschoice-glyphs.ttf
│   │   │   │   └── vitalschoice-glyphs.woff
│   │   │   ├── grunt_configuration.json
│   │   │   ├── img
│   │   │   │   ├── homepage-background.jpg
│   │   │   │   ├── sprite-1x.png
│   │   │   │   ├── sprite-2x.png
│   │   │   │   └── subpage-background.jpg
│   │   │   ├── less
│   │   │   │   ├── app-theming-variables.less
│   │   │   │   └── app.less
│   │   │   └── logic
│   │   │   └── app.logic.js
│   │   ├── bcbsnc
│   │   │   ├── README.md
│   │   │   ├── fonts
│   │   │   │   ├── 02e005e1-ac11-49f9-b290-ee01bad12606.ttf
│   │   │   │   ├── 05281082-43bf-47ac-a97c-cc09f6ee97b7.woff
│   │   │   │   ├── 05767d79-31b0-4d7d-b473-0ba480c67a25.ttf
│   │   │   │   ├── 06f2633b-1a3a-49a6-8c6d-cc96680c40fe.eot
│   │   │   │   ├── 0b859b66-b397-42f4-acab-f689f771ca1e.svg
│   │   │   │   ├── 13e28cb2-c198-44e1-9948-b21eef388116.eot
│   │   │   │   ├── 3d8afbb0-431e-4590-9d1e-5cb99d482863.woff
│   │   │   │   ├── 48a42ae4-2dae-4819-a76c-c4a39ba76875.eot
│   │   │   │   ├── 4bed78d0-7a4f-46bf-b802-29f04d1d2e11.svg
│   │   │   │   ├── 5b53cfa1-c27d-4fa0-b526-1f8e6bc5ecad.woff
│   │   │   │   ├── 6846d199-8090-436d-b79f-bede1f0657ff.svg
│   │   │   │   ├── 6fdd43a7-c877-42cb-8a63-d81872f46de8.ttf
│   │   │   │   ├── 75cb1322-25ed-4a0d-9fad-79bf91469926.ttf
│   │   │   │   ├── 78c7a8d2-8a85-47a5-8c13-049c7b18c9c0.woff
│   │   │   │   ├── 8879382d-addd-4463-af97-c743889f5eae.woff
│   │   │   │   ├── 9c87416c-6146-430d-96ec-ea221bbec465.ttf
│   │   │   │   ├── 9da52489-293c-462c-b4c9-1fd1b464c454.svg
│   │   │   │   ├── SimplonBP-Bold.woff
│   │   │   │   ├── SimplonBP-BoldItalic.woff
│   │   │   │   ├── SimplonBP-Light.woff
│   │   │   │   ├── SimplonBP-LightItalic.woff
│   │   │   │   ├── SimplonBP-Medium.woff
│   │   │   │   ├── SimplonBP-MediumItalic.woff
│   │   │   │   ├── SimplonBP-Regular.woff
│   │   │   │   ├── SimplonBP-RegularItalic.woff
│   │   │   │   ├── a91bb6bb-99c4-4a06-b540-dc97c6695230.eot
│   │   │   │   ├── c14b251f-80d3-4415-8d21-b2868dea7a9b.eot
│   │   │   │   ├── c37183cf-3e94-42b3-a71b-75ba616287d7.svg
│   │   │   │   ├── d7cf6a30-fb6a-4725-9c93-2372d9f4bb8d.woff
│   │   │   │   ├── dd6ae40f-c627-430f-b5d0-bcdbf4a4d784.ttf
│   │   │   │   ├── df87702f-a933-4d3a-b9d9-4ae72506ae9d.eot
│   │   │   │   ├── e4ae19e7-c510-4127-837d-8f218498da93.woff
│   │   │   │   ├── e89379d2-2604-41ab-911f-cc89f3e4b49b.eot
│   │   │   │   ├── f61ff7a7-3e99-4855-9a04-42987e9edad6.svg
│   │   │   │   ├── f69c8a4d-a4e3-44f4-bfa4-96121e3aefae.svg
│   │   │   │   ├── fb6dd99b-78b9-4459-b787-00d3f0fc0c9f.ttf
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   └── glyphicons-halflings-regular.woff
│   │   │   ├── grunt_configuration.json
│   │   │   ├── img
│   │   │   │   ├── homepage-background.jpg
│   │   │   │   ├── logo_multiplan.jpg
│   │   │   │   ├── logo_phcs.jpg
│   │   │   │   ├── sprite-1x.png
│   │   │   │   └── sprite-2x.png
│   │   │   ├── less
│   │   │   │   ├── app-theming-variables.less
│   │   │   │   └── app.less
│   │   │   ├── logic
│   │   │   │   └── custom.identifiersFilter.js
│   │   │   └── views
│   │   │   ├── index.scripts.tpl.html
│   │   │   └── pcp.warning.tpl.html
│   │   ├── bcbst
│   │   │   ├── README.md
│   │   │   ├── fonts
│   │   │   │   ├── 25FFFC_0_0.eot
│   │   │   │   ├── 25FFFC_0_0.ttf
│   │   │   │   ├── 25FFFC_0_0.woff
│   │   │   │   ├── 25FFFC_1_0.eot
│   │   │   │   ├── 25FFFC_1_0.ttf
│   │   │   │   ├── 25FFFC_1_0.woff
│   │   │   │   ├── SimplonBP-Bold.woff
│   │   │   │   ├── SimplonBP-BoldItalic.woff
│   │   │   │   ├── SimplonBP-Light.woff
│   │   │   │   ├── SimplonBP-LightItalic.woff
│   │   │   │   ├── SimplonBP-Medium.woff
│   │   │   │   ├── SimplonBP-MediumItalic.woff
│   │   │   │   ├── SimplonBP-Regular.woff
│   │   │   │   ├── SimplonBP-RegularItalic.woff
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   └── glyphicons-halflings-regular.woff
│   │   │   ├── grunt_configuration.json
│   │   │   ├── img
│   │   │   │   ├── homepage-background.jpg
│   │   │   │   ├── sprite-1x.png
│   │   │   │   └── sprite-2x.png
│   │   │   ├── less
│   │   │   │   ├── app-theming-variables.less
│   │   │   │   └── app.less
│   │   │   └── logic
│   │   │   └── profile.common.showAttestation.js
│   │   ├── fctx
│   │   │   ├── README.md
│   │   │   ├── fonts
│   │   │   │   ├── SimplonBP-Bold.woff
│   │   │   │   ├── SimplonBP-BoldItalic.woff
│   │   │   │   ├── SimplonBP-Light.woff
│   │   │   │   ├── SimplonBP-LightItalic.woff
│   │   │   │   ├── SimplonBP-Medium.woff
│   │   │   │   ├── SimplonBP-MediumItalic.woff
│   │   │   │   ├── SimplonBP-Regular.woff
│   │   │   │   ├── SimplonBP-RegularItalic.woff
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   └── glyphicons-halflings-regular.woff
│   │   │   ├── grunt_configuration.json
│   │   │   ├── img
│   │   │   │   ├── homepage-background.jpg
│   │   │   │   ├── logo_multiplan.jpg
│   │   │   │   └── logo_phcs.jpg
│   │   │   ├── less
│   │   │   │   ├── app-theming-variables.less
│   │   │   │   └── app.less
│   │   │   └── views
│   │   │   └── home.bottom.tpl.html
│   │   ├── gphlth
│   │   │   ├── fonts
│   │   │   │   ├── SimplonBP-Bold.woff
│   │   │   │   ├── SimplonBP-BoldItalic.woff
│   │   │   │   ├── SimplonBP-Light.woff
│   │   │   │   ├── SimplonBP-LightItalic.woff
│   │   │   │   ├── SimplonBP-Medium.woff
│   │   │   │   ├── SimplonBP-MediumItalic.woff
│   │   │   │   ├── SimplonBP-Regular.woff
│   │   │   │   ├── SimplonBP-RegularItalic.woff
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   ├── vitalschoice-glyphs.eot
│   │   │   │   ├── vitalschoice-glyphs.svg
│   │   │   │   ├── vitalschoice-glyphs.ttf
│   │   │   │   └── vitalschoice-glyphs.woff
│   │   │   ├── grunt_configuration.json
│   │   │   ├── img
│   │   │   │   ├── homepage-background.jpg
│   │   │   │   ├── sprite-1x.png
│   │   │   │   ├── sprite-2x.png
│   │   │   │   └── subpage-background.jpg
│   │   │   └── less
│   │   │   ├── app-theming-variables.less
│   │   │   └── app.less
│   │   ├── hcsc
│   │   │   ├── README.md
│   │   │   ├── fonts
│   │   │   │   ├── SimplonBP-Bold.woff
│   │   │   │   ├── SimplonBP-BoldItalic.woff
│   │   │   │   ├── SimplonBP-Light.woff
│   │   │   │   ├── SimplonBP-LightItalic.woff
│   │   │   │   ├── SimplonBP-Medium.woff
│   │   │   │   ├── SimplonBP-MediumItalic.woff
│   │   │   │   ├── SimplonBP-Regular.woff
│   │   │   │   ├── SimplonBP-RegularItalic.woff
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   └── glyphicons-halflings-regular.woff
│   │   │   ├── grunt_configuration.json
│   │   │   ├── img
│   │   │   │   ├── care.png
│   │   │   │   ├── cost.png
│   │   │   │   ├── homepage-background.jpg
│   │   │   │   ├── pqm-rating-blue.png
│   │   │   │   ├── [email protected]
│   │   │   │   ├── pqm-rating-gray.png
│   │   │   │   ├── pqm-rating-gray.psd
│   │   │   │   ├── [email protected]
│   │   │   │   └── subpage-background.jpg
│   │   │   ├── less
│   │   │   │   ├── app-theming-variables.less
│   │   │   │   └── app.less
│   │   │   ├── logic
│   │   │   │   ├── custom.costCylinder.js
│   │   │   │   ├── custom.homepageSkipLinks.js
│   │   │   │   ├── custom.locationsByMedicalGroup.js
│   │   │   │   ├── custom.qualityDescriptions.js
│   │   │   │   ├── custom.searchMore.Results.js
│   │   │   │   ├── custom.showLPN.js
│   │   │   │   └── profile.common.filterMappedData.js
│   │   │   └── views
│   │   │   ├── global.search.container.desktop.lander.tpl.html
│   │   │   ├── global.search.submit.lander.tpl.html
│   │   │   ├── index.meta.tpl.html
│   │   │   ├── index.scripts.tpl.html
│   │   │   ├── profile.facility.specialtiesBottom.tpl.html
│   │   │   ├── profile.professional.otherLocationsByMedicalGroup.header.tpl.html
│   │   │   ├── profile.professional.otherLocationsByMedicalGroup.mobile.tpl.html
│   │   │   ├── profile.professional.specialtiesBottom.tpl.html
│   │   │   ├── search.common.otherLocations.affiliatedWith.tpl.html
│   │   │   ├── search.common.otherLocations.expander.tpl.html
│   │   │   └── wayfinding.searchLanderTop.tpl.html
│   │   ├── lifewise
│   │   │   ├── README.md
│   │   │   ├── fonts
│   │   │   │   ├── CartoGothicStd-Bold.otf
│   │   │   │   ├── CartoGothicStd-Bold.woff
│   │   │   │   ├── CartoGothicStd-BoldItalic.otf
│   │   │   │   ├── CartoGothicStd-BoldItalic.woff
│   │   │   │   ├── CartoGothicStd-Book.otf
│   │   │   │   ├── CartoGothicStd-Book.woff
│   │   │   │   ├── CartoGothicStd-Italic.otf
│   │   │   │   ├── CartoGothicStd-Italic.woff
│   │   │   │   ├── OpenSans-Bold.ttf
│   │   │   │   ├── OpenSans-Bold.woff
│   │   │   │   ├── OpenSans-BoldItalic.ttf
│   │   │   │   ├── OpenSans-BoldItalic.woff
│   │   │   │   ├── OpenSans-ExtraBold.ttf
│   │   │   │   ├── OpenSans-ExtraBold.woff
│   │   │   │   ├── OpenSans-ExtraBoldItalic.ttf
│   │   │   │   ├── OpenSans-ExtraBoldItalic.woff
│   │   │   │   ├── OpenSans-Italic.ttf
│   │   │   │   ├── OpenSans-Italic.woff
│   │   │   │   ├── OpenSans-Light.ttf
│   │   │   │   ├── OpenSans-Light.woff
│   │   │   │   ├── OpenSans-LightItalic.ttf
│   │   │   │   ├── OpenSans-LightItalic.woff
│   │   │   │   ├── OpenSans-Regular-webfont.eot
│   │   │   │   ├── OpenSans-Regular-webfont.ttf
│   │   │   │   ├── OpenSans-Regular-webfont.woff
│   │   │   │   ├── OpenSans-Regular.ttf
│   │   │   │   ├── OpenSans-Regular.woff
│   │   │   │   ├── OpenSans-Semibold.ttf
│   │   │   │   ├── OpenSans-Semibold.woff
│   │   │   │   ├── OpenSans-SemiboldItalic.ttf
│   │   │   │   ├── OpenSans-SemiboldItalic.woff
│   │   │   │   ├── SimplonBP-Bold.woff
│   │   │   │   ├── SimplonBP-BoldItalic.woff
│   │   │   │   ├── SimplonBP-Light.woff
│   │   │   │   ├── SimplonBP-LightItalic.woff
│   │   │   │   ├── SimplonBP-Medium.woff
│   │   │   │   ├── SimplonBP-MediumItalic.woff
│   │   │   │   ├── SimplonBP-Regular.woff
│   │   │   │   ├── SimplonBP-RegularItalic.woff
│   │   │   │   ├── cartogothicstd-book-webfont.eot
│   │   │   │   ├── cartogothicstd-book-webfont.ttf
│   │   │   │   ├── cartogothicstd-book-webfont.woff
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   └── glyphicons-halflings-regular.woff
│   │   │   ├── grunt_configuration.json
│   │   │   ├── less
│   │   │   │   ├── app-theming-variables.less
│   │   │   │   └── app.less
│   │   │   └── views
│   │   │   ├── index.scripts.tpl.html
│   │   │   └── profile.professional.specialties.pcp.tpl.html
│   │   ├── mdx
│   │   │   ├── README.md
│   │   │   ├── fonts
│   │   │   │   ├── SimplonBP-Bold.woff
│   │   │   │   ├── SimplonBP-BoldItalic.woff
│   │   │   │   ├── SimplonBP-Light.woff
│   │   │   │   ├── SimplonBP-LightItalic.woff
│   │   │   │   ├── SimplonBP-Medium.woff
│   │   │   │   ├── SimplonBP-MediumItalic.woff
│   │   │   │   ├── SimplonBP-Regular.woff
│   │   │   │   ├── SimplonBP-RegularItalic.woff
│   │   │   │   ├── custom-app-glyphs
│   │   │   │   │   ├── CustomAppGlyphs.ai
│   │   │   │   │   ├── MultiExporter.jsx
│   │   │   │   │   ├── README.txt
│   │   │   │   │   ├── custom-app-glyphs.eot
│   │   │   │   │   ├── custom-app-glyphs.svg
│   │   │   │   │   ├── custom-app-glyphs.ttf
│   │   │   │   │   ├── custom-app-glyphs.woff
│   │   │   │   │   ├── selection.json
│   │   │   │   │   └── style.css
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   ├── vitalschoice-glyphs.eot
│   │   │   │   ├── vitalschoice-glyphs.svg
│   │   │   │   ├── vitalschoice-glyphs.ttf
│   │   │   │   └── vitalschoice-glyphs.woff
│   │   │   ├── grunt_configuration.json
│   │   │   ├── img
│   │   │   │   ├── homepage-background.jpg
│   │   │   │   ├── logo.png
│   │   │   │   ├── sprite-1x.png
│   │   │   │   ├── sprite-1x.psd
│   │   │   │   ├── sprite-2x.png
│   │   │   │   └── subpage-background.jpg
│   │   │   └── less
│   │   │   ├── app-theming-variables.less
│   │   │   └── app.less
│   │   ├── premera
│   │   │   ├── README.md
│   │   │   ├── fonts
│   │   │   │   ├── CartoGothicStd-Bold.otf
│   │   │   │   ├── CartoGothicStd-Bold.woff
│   │   │   │   ├── CartoGothicStd-BoldItalic.otf
│   │   │   │   ├── CartoGothicStd-BoldItalic.woff
│   │   │   │   ├── CartoGothicStd-Book.otf
│   │   │   │   ├── CartoGothicStd-Book.woff
│   │   │   │   ├── CartoGothicStd-Italic.otf
│   │   │   │   ├── CartoGothicStd-Italic.woff
│   │   │   │   ├── OpenSans-Bold.ttf
│   │   │   │   ├── OpenSans-Bold.woff
│   │   │   │   ├── OpenSans-BoldItalic.ttf
│   │   │   │   ├── OpenSans-BoldItalic.woff
│   │   │   │   ├── OpenSans-ExtraBold.ttf
│   │   │   │   ├── OpenSans-ExtraBold.woff
│   │   │   │   ├── OpenSans-ExtraBoldItalic.ttf
│   │   │   │   ├── OpenSans-ExtraBoldItalic.woff
│   │   │   │   ├── OpenSans-Italic.ttf
│   │   │   │   ├── OpenSans-Italic.woff
│   │   │   │   ├── OpenSans-Light.ttf
│   │   │   │   ├── OpenSans-Light.woff
│   │   │   │   ├── OpenSans-LightItalic.ttf
│   │   │   │   ├── OpenSans-LightItalic.woff
│   │   │   │   ├── OpenSans-Regular-webfont.eot
│   │   │   │   ├── OpenSans-Regular-webfont.ttf
│   │   │   │   ├── OpenSans-Regular-webfont.woff
│   │   │   │   ├── OpenSans-Regular.ttf
│   │   │   │   ├── OpenSans-Regular.woff
│   │   │   │   ├── OpenSans-Semibold.ttf
│   │   │   │   ├── OpenSans-Semibold.woff
│   │   │   │   ├── OpenSans-SemiboldItalic.ttf
│   │   │   │   ├── OpenSans-SemiboldItalic.woff
│   │   │   │   ├── SimplonBP-Bold.woff
│   │   │   │   ├── SimplonBP-BoldItalic.woff
│   │   │   │   ├── SimplonBP-Light.woff
│   │   │   │   ├── SimplonBP-LightItalic.woff
│   │   │   │   ├── SimplonBP-Medium.woff
│   │   │   │   ├── SimplonBP-MediumItalic.woff
│   │   │   │   ├── SimplonBP-Regular.woff
│   │   │   │   ├── SimplonBP-RegularItalic.woff
│   │   │   │   ├── cartogothicstd-book-webfont.eot
│   │   │   │   ├── cartogothicstd-book-webfont.ttf
│   │   │   │   ├── cartogothicstd-book-webfont.woff
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   └── glyphicons-halflings-regular.woff
│   │   │   ├── grunt_configuration.json
│   │   │   ├── img
│   │   │   │   ├── homepage-background.jpg
│   │   │   │   └── subpage-background.jpg
│   │   │   ├── less
│   │   │   │   ├── app-theming-variables.less
│   │   │   │   └── app.less
│   │   │   └── views
│   │   │   ├── index.scripts.tpl.html
│   │   │   └── profile.professional.specialties.pcp.tpl.html
│   │   ├── vch3
│   │   │   ├── README.md
│   │   │   ├── fonts
│   │   │   │   ├── SimplonBP-Bold.woff
│   │   │   │   ├── SimplonBP-BoldItalic.woff
│   │   │   │   ├── SimplonBP-Light.woff
│   │   │   │   ├── SimplonBP-LightItalic.woff
│   │   │   │   ├── SimplonBP-Medium.woff
│   │   │   │   ├── SimplonBP-MediumItalic.woff
│   │   │   │   ├── SimplonBP-Regular.woff
│   │   │   │   ├── SimplonBP-RegularItalic.woff
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   ├── vitalschoice-glyphs.eot
│   │   │   │   ├── vitalschoice-glyphs.svg
│   │   │   │   ├── vitalschoice-glyphs.ttf
│   │   │   │   └── vitalschoice-glyphs.woff
│   │   │   ├── grunt_configuration.json
│   │   │   ├── img
│   │   │   │   ├── homepage-background.jpg
│   │   │   │   ├── logo.png
│   │   │   │   ├── sprite-1x.png
│   │   │   │   ├── sprite-1x.psd
│   │   │   │   ├── sprite-2x.png
│   │   │   │   └── subpage-background.jpg
│   │   │   └── less
│   │   │   ├── app-theming-variables.less
│   │   │   └── app.less
│   │   └── vitals
│   │   ├── README.md
│   │   ├── fonts
│   │   │   ├── SimplonBP-Bold.woff
│   │   │   ├── SimplonBP-BoldItalic.woff
│   │   │   ├── SimplonBP-Light.woff
│   │   │   ├── SimplonBP-LightItalic.woff
│   │   │   ├── SimplonBP-Medium.woff
│   │   │   ├── SimplonBP-MediumItalic.woff
│   │   │   ├── SimplonBP-Regular.woff
│   │   │   ├── SimplonBP-RegularItalic.woff
│   │   │   ├── custom-app-glyphs
│   │   │   │   ├── CustomAppGlyphs.ai
│   │   │   │   ├── MultiExporter.jsx
│   │   │   │   ├── README.txt
│   │   │   │   ├── custom-app-glyphs.eot
│   │   │   │   ├── custom-app-glyphs.svg
│   │   │   │   ├── custom-app-glyphs.ttf
│   │   │   │   ├── custom-app-glyphs.woff
│   │   │   │   ├── selection.json
│   │   │   │   └── style.css
│   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   ├── vitalschoice-glyphs.eot
│   │   │   ├── vitalschoice-glyphs.svg
│   │   │   ├── vitalschoice-glyphs.ttf
│   │   │   └── vitalschoice-glyphs.woff
│   │   ├── grunt_configuration.json
│   │   ├── img
│   │   │   ├── homepage-background.jpg
│   │   │   ├── logo.png
│   │   │   ├── sprite-1x.png
│   │   │   ├── sprite-1x.psd
│   │   │   ├── sprite-2x.png
│   │   │   └── subpage-background.jpg
│   │   └── less
│   │   ├── app-theming-variables.less
│   │   └── app.less
│   ├── app.theming.js
│   ├── app.utility.js
│   ├── img
│   │   ├── BDKAH.jpg
│   │   ├── BSH.jpg
│   │   ├── BTECCL.jpg
│   │   ├── BTEDCL.jpg
│   │   ├── BTEMH.jpg
│   │   ├── BTENCQAMH.jpg
│   │   ├── JCAHO.jpg
│   │   ├── NCQADPRP.jpg
│   │   ├── NCQAHSRP.jpg
│   │   ├── NCQAPPCPCM.jpg
│   │   ├── abfm.jpg
│   │   ├── abim.jpg
│   │   ├── abms.jpg
│   │   ├── abs.jpg
│   │   ├── ajax-loader.gif
│   │   ├── asmbs.jpg
│   │   ├── bd_bariatric.jpg
│   │   ├── bd_cardiac.jpg
│   │   ├── bd_center.jpg
│   │   ├── bd_complex_rare_can.jpg
│   │   ├── bd_knee_and_hip.jpg
│   │   ├── bd_spine_surgery.jpg
│   │   ├── bd_transplant.jpg
│   │   ├── bdc_bariatric_85.gif
│   │   ├── bdc_cancer_85.gif
│   │   ├── bdc_cardiac_85.gif
│   │   ├── bdc_knee_hip_85.gif
│   │   ├── bdc_plus_bariatric_85.gif
│   │   ├── bdc_plus_bariatric_horizontal.jpg
│   │   ├── bdc_plus_cancer_85.gif
│   │   ├── bdc_plus_cancer_horizontal.jpg
│   │   ├── bdc_plus_cardiac_85.gif
│   │   ├── bdc_plus_cardiac_horizontal.jpg
│   │   ├── bdc_plus_knee_hip_85.gif
│   │   ├── bdc_plus_knee_hip_horizontal.jpg
│   │   ├── bdc_plus_spine_85.gif
│   │   ├── bdc_plus_spine_horizontal.jpg
│   │   ├── bdc_plus_transplant_85.gif
│   │   ├── bdc_plus_transplant_horizontal.jpg
│   │   ├── bdc_spine_85.gif
│   │   ├── bdc_transplant_85.gif
│   │   ├── bdcplus_knee.jpg
│   │   ├── bdcplus_spine.jpg
│   │   ├── blank.gif
│   │   ├── bottom-shadow.png
│   │   ├── bte_asthma.jpg
│   │   ├── bte_cardiac.jpg
│   │   ├── bte_copd.jpg
│   │   ├── bte_depression.jpg
│   │   ├── bte_diabetes.jpg
│   │   ├── bte_hyper.jpg
│   │   ├── bte_mh.jpg
│   │   ├── bte_physnoff.jpg
│   │   ├── bte_spinecare.jpg
│   │   ├── doctor-female.jpg
│   │   ├── doctor-male.jpg
│   │   ├── ehr.jpg
│   │   ├── facility.jpg
│   │   ├── header-gradient.png
│   │   ├── iepngfix.htc
│   │   ├── logo.png
│   │   ├── main-bg-dot.png
│   │   ├── map.jpg
│   │   ├── mockup-tick-hcsc.png
│   │   ├── ncqa_back.jpg
│   │   ├── ncqa_diabetes.jpg
│   │   ├── ncqa_heart.jpg
│   │   ├── ncqa_medicalhome.jpg
│   │   ├── ncqa_ppc.jpg
│   │   ├── print-location-pin.png
│   │   ├── print-phone-pin.png
│   │   ├── print-star-active.png
│   │   ├── print-star.png
│   │   ├── print-vitals-logo.png
│   │   ├── sprite-1x.png
│   │   ├── sprite-1x.psd
│   │   └── sprite-2x.png
│   ├── less
│   │   ├── app.less
│   │   ├── print.less
│   │   ├── select2-custom.less
│   │   ├── tooltipster-theme-custom.less
│   │   └── version
│   │   └── app.15.2.less
│   ├── test
│   │   ├── app.acl.test.js
│   │   ├── app.config.test.js
│   │   ├── app.dynamic.css.test.js
│   │   ├── app.errors.test.js
│   │   ├── app.features.test.js
│   │   └── app.network.resolution.test.js
│   └── views
│   ├── app.header.2.tpl.html
│   ├── app.header.tpl.html
│   ├── app.language.selector.tpl.html
│   ├── app.languages.mobile.tpl.html
│   ├── index.html
│   └── pcp.modal.tpl.html
├── common
│   ├── common.a.js
│   ├── common.alpha.list.js
│   ├── common.analytics.js
│   ├── common.array.horizontal.delimited.js
│   ├── common.array.quality.expanded.js
│   ├── common.array.quality.js
│   ├── common.array.vertical.js
│   ├── common.array.vertical.responsive.js
│   ├── common.autofocus.js
│   ├── common.breadcrumbs.js
│   ├── common.charts.donut.js
│   ├── common.charts.js
│   ├── common.cost.cylinder.js
│   ├── common.event.action.js
│   ├── common.expander.js
│   ├── common.fallbacksrc.js
│   ├── common.filters.js
│   ├── common.flash.message.js
│   ├── common.global.search.js
│   ├── common.header.js
│   ├── common.hover.js
│   ├── common.isotope.refresh.js
│   ├── common.js
│   ├── common.loading.js
│   ├── common.map.js
│   ├── common.map.pin.js
│   ├── common.map.pin.popup.profile.js
│   ├── common.modal.tpl-override.js
│   ├── common.money.js
│   ├── common.noFocus.js
│   ├── common.pager.override.js
│   ├── common.phone.js
│   ├── common.photo.attribution.js
│   ├── common.prompt.js
│   ├── common.rating.js
│   ├── common.read.once.js
│   ├── common.remaining.js
│   ├── common.serp.bdc.js
│   ├── common.serpfilter.js
│   ├── common.share.js
│   ├── common.skip.link.js
│   ├── common.specialties.expertise.js
│   ├── common.title.js
│   ├── common.tooltip.js
│   ├── common.unFocus.js
│   ├── common.urgent.care.js
│   ├── common.visible.js
│   ├── less
│   │   ├── array.quality.expanded.less
│   │   ├── common.global.search.less
│   │   ├── common.map.less
│   │   ├── common.map.pin.less
│   │   ├── cost.cylinder.less
│   │   └── network-prompt.less
│   ├── test
│   │   ├── common.array.vertical.test.js
│   │   ├── common.cost.cylinder.test.js
│   │   ├── common.global.search.test.js
│   │   ├── common.header.test.js
│   │   ├── common.map.test.js
│   │   ├── common.money.test.js
│   │   ├── common.phone.test.js
│   │   ├── common.prompt.test.js
│   │   ├── common.read.once.test.js
│   │   └── common.share.test.js
│   └── views
│   ├── alpha.list.tpl.html
│   ├── alpha.nav.tpl.html
│   ├── array.quality.expanded.tpl.html
│   ├── array.quality.tpl.html
│   ├── array.vertical.responsive.tpl.html
│   ├── array.vertical.tpl.html
│   ├── breadcrumbs.new.tpl.html
│   ├── breadcrumbs.tpl.html
│   ├── cost.cylinder.nav.tpl.html
│   ├── cost.cylinder.plan.dates.tpl.html
│   ├── cost.cylinder.tpl.html
│   ├── cost.cylinder.tweaker.tpl.html
│   ├── flash.message.tpl.html
│   ├── global.search.container.desktop.header.tpl.html
│   ├── global.search.container.mobile.header.tpl.html
│   ├── global.search.container.new.header.tpl.html
│   ├── global.search.location.2.tpl.html
│   ├── global.search.location.tpl.html
│   ├── global.search.location.typeahead.item.1.tpl.html
│   ├── global.search.location.typeahead.item.2.tpl.html
│   ├── global.search.location.typeahead.item.tpl.html
│   ├── global.search.member.2.tpl.html
│   ├── global.search.member.tpl.html
│   ├── global.search.network.dropdown.1.tpl.html
│   ├── global.search.network.dropdown.2.tpl.html
│   ├── global.search.network.tpl.html
│   ├── global.search.query.tpl.html
│   ├── global.search.query.typeahead.item.1.tpl.html
│   ├── global.search.query.typeahead.item.2.tpl.html
│   ├── global.search.query.typeahead.item.tpl.html
│   ├── global.search.submit.tpl.html
│   ├── map.directions.tpl.html
│   ├── map.pin.cluster.tpl.html
│   ├── map.pin.popup.profile.tpl.html
│   ├── map.pin.tpl.html
│   ├── map.tpl.html
│   ├── money.tpl.html
│   ├── phone.tpl.html
│   ├── photo.attribution.tpl.html
│   ├── prompt.tpl.html
│   ├── rating.tpl.html
│   ├── request.error.tpl.html
│   ├── serp.bdc.tpl.html
│   ├── share.tpl.html
│   ├── skip.link.tpl.html
│   ├── step.modal.tpl.html
│   ├── tooltip.question.tpl.html
│   ├── urgent.care.link.mobile.tpl.html
│   └── urgent.care.link.tpl.html
├── compare
│   ├── compare.directives.e2e.test.js
│   ├── compare.directives.js
│   ├── compare.directives.test.js
│   ├── compare.js
│   ├── less
│   │   └── compare.less
│   └── views
│   ├── compare.directives.checkbox.1.0.tpl.html
│   ├── compare.directives.checkbox.2.0.tpl.html
│   ├── compare.directives.list.tpl.html
│   ├── compare.directives.table.tpl.html
│   └── compare.tpl.html
├── directions
│   ├── directions.js
│   └── views
│   └── directions.tpl.html
├── errors
│   └── views
│   └── 404.tpl.html
├── event
│   ├── event.js
│   ├── event.services.abEvent.js
│   ├── event.services.context.js
│   ├── event.services.gaCustomDimension.js
│   ├── event.services.gaEvent.js
│   ├── event.services.gaPageView.js
│   ├── event.services.interpolate.js
│   ├── event.services.js
│   ├── event.services.listener.js
│   ├── event.services.scope.js
│   ├── event.services.trackers.js
│   └── event.services.wtEvent.js
├── footer
│   ├── footer.controllers.js
│   ├── footer.js
│   ├── less
│   │   └── footer.less
│   ├── test
│   │   └── footer.test.js
│   └── views
│   └── footer.tpl.html
├── login
│   ├── login.controllers.js
│   ├── login.js
│   └── views
│   ├── login.error.tpl.html
│   ├── login.tpl.html
│   └── login.warning.tpl.html
├── profile
│   ├── profile.common
│   │   ├── less
│   │   │   └── profile.common.less
│   │   ├── profile.common.affiliations.js
│   │   ├── profile.common.data.mapping.core.js
│   │   ├── profile.common.data.mapping.filters.js
│   │   ├── profile.common.data.mapping.formatting.js
│   │   ├── profile.common.directives.js
│   │   ├── profile.common.js
│   │   ├── profile.common.services.maps.js
│   │   ├── test
│   │   │   ├── profile.common.affiliations.test.js
│   │   │   ├── profile.common.data.mapping.filters.test.js
│   │   │   └── profile.common.directives.test.js
│   │   └── views
│   │   ├── profile.common.attestation.tpl.html
│   │   ├── profile.common.card.1.0.tpl.html
│   │   ├── profile.common.card.2.0.tpl.html
│   │   ├── profile.common.disclaimer.bottom.tpl.html
│   │   ├── profile.common.disclaimer.module.tpl.html
│   │   ├── profile.common.disclaimer.top.tpl.html
│   │   ├── profile.common.evaluation.mobile.tpl.html
│   │   ├── profile.common.general.mobile.tpl.html
│   │   ├── profile.common.login.tpl.html
│   │   ├── profile.common.other.locations.tpl.html
│   │   └── profile.common.tpl.html
│   ├── profile.facility
│   │   ├── profile.facility.contollers.js
│   │   ├── profile.facility.directives.js
│   │   ├── profile.facility.filters.js
│   │   ├── profile.facility.js
│   │   ├── profile.facility.services.js
│   │   ├── test
│   │   │   └── profile.facility.test.js
│   │   └── views
│   │   ├── profile.facility.accepted.tpl.html
│   │   ├── profile.facility.affiliations.expanded.tpl.html
│   │   ├── profile.facility.affiliations.tpl.html
│   │   ├── profile.facility.amenities.expanded.tpl.html
│   │   ├── profile.facility.amenities.tpl.html
│   │   ├── profile.facility.awards.tpl.html
│   │   ├── profile.facility.awardsExpanded.tpl.html
│   │   ├── profile.facility.cost.expanded.tpl.html
│   │   ├── profile.facility.cost.tpl.html
│   │   ├── profile.facility.designations.tpl.html
│   │   ├── profile.facility.doctors.expanded.tpl.html
│   │   ├── profile.facility.doctors.tpl.html
│   │   ├── profile.facility.home.tpl.html
│   │   ├── profile.facility.hours.tpl.html
│   │   ├── profile.facility.identifiers.tpl.html
│   │   ├── profile.facility.languages.tpl.html
│   │   ├── profile.facility.limitations.tpl.html
│   │   ├── profile.facility.networkParticipation.tpl.html
│   │   ├── profile.facility.networksAccepted.tpl.html
│   │   ├── profile.facility.other.locations.tpl.html
│   │   ├── profile.facility.quality.expanded.tpl.html
│   │   ├── profile.facility.quality.tpl.html
│   │   ├── profile.facility.reviews.expanded.tpl.html
│   │   ├── profile.facility.reviews.tpl.html
│   │   ├── profile.facility.similar.tpl.html
│   │   └── profile.facility.specialties.tpl.html
│   ├── profile.js
│   └── profile.professional
│   ├── less
│   │   └── profile.professional.less
│   ├── profile.professional.contollers.js
│   ├── profile.professional.filters.js
│   ├── profile.professional.js
│   ├── profile.professional.services.js
│   ├── test
│   │   └── profile.professional.test.js
│   └── views
│   ├── profile.professional.accepted.tpl.html
│   ├── profile.professional.activities.tpl.html
│   ├── profile.professional.affiliations.expanded.tpl.html
│   ├── profile.professional.affiliations.tpl.html
│   ├── profile.professional.amenities.tpl.html
│   ├── profile.professional.awards.expanded.tpl.html
│   ├── profile.professional.awards.tpl.html
│   ├── profile.professional.biography.tpl.html
│   ├── profile.professional.cost.expanded.tpl.html
│   ├── profile.professional.cost.tpl.html
│   ├── profile.professional.designations.tpl.html
│   ├── profile.professional.education.tpl.html
│   ├── profile.professional.home.tpl.html
│   ├── profile.professional.hours.tpl.html
│   ├── profile.professional.identifiers.tpl.html
│   ├── profile.professional.languages.tpl.html
│   ├── profile.professional.limitations.tpl.html
│   ├── profile.professional.networkParticipation.tpl.html
│   ├── profile.professional.networksAccepted.tpl.html
│   ├── profile.professional.other.locations.tpl.html
│   ├── profile.professional.publications.tpl.html
│   ├── profile.professional.quality.expanded.tpl.html
│   ├── profile.professional.quality.tpl.html
│   ├── profile.professional.reviews.expanded.tpl.html
│   ├── profile.professional.reviews.tpl.html
│   ├── profile.professional.reviews.write.tpl.html
│   ├── profile.professional.similar.tpl.html
│   └── profile.professional.specialties.tpl.html
├── redirect
│   ├── redirect.controllers.js
│   └── redirect.js
├── robots.txt
├── search
│   ├── search.common
│   │   ├── less
│   │   │   └── search.common.less
│   │   ├── search.common.data.mapping.js
│   │   ├── search.common.directives.js
│   │   ├── search.common.js
│   │   ├── search.common.procedures.js
│   │   ├── search.common.services.js
│   │   ├── search.common.sort.js
│   │   ├── test
│   │   │   ├── search.common.data.mapping.test.js
│   │   │   ├── search.common.directives.test.js
│   │   │   └── search.common.procedures.test.js
│   │   └── views
│   │   ├── filters
│   │   │   └── search.provider.filters.tpl.html
│   │   ├── search.common.bottom.disclaimer.tpl.html
│   │   ├── search.common.filtering.tpl.html
│   │   ├── search.common.filters.tpl.html
│   │   ├── search.common.pcp.selection.tpl.html
│   │   ├── search.common.procedure.description.tpl.html
│   │   ├── search.common.top.disclaimer.tpl.html
│   │   ├── search.common.tpl.html
│   │   ├── search.filters.tpl.html
│   │   ├── search.profile.header.1.0.tpl.html
│   │   └── search.profile.header.2.0.tpl.html
│   ├── search.facility
│   │   ├── search.facility.controllers.js
│   │   ├── search.facility.js
│   │   ├── search.facility.services.js
│   │   └── test
│   │   └── search.facility.test.js
│   ├── search.filters
│   │   ├── search.filters.category.directive.js
│   │   ├── search.filters.checkbox.directive.js
│   │   ├── search.filters.controller.js
│   │   ├── search.filters.directive.js
│   │   ├── search.filters.dropdown.directive.js
│   │   ├── search.filters.service.js
│   │   ├── test
│   │   │   └── search.filters.test.js
│   │   └── views
│   │   ├── search.category.tpl.html
│   │   ├── search.filter.checkbox.tpl.html
│   │   ├── search.filter.dropdown.tpl.html
│   │   └── search.filters.tpl.html
│   ├── search.js
│   ├── search.professional
│   │   ├── search.professional.controllers.js
│   │   ├── search.professional.js
│   │   ├── search.professional.services.js
│   │   └── test
│   │   └── search.professional.test.js
│   └── search.provider
│   ├── search.provider.controllers.js
│   ├── search.provider.js
│   ├── search.provider.services.js
│   └── tests
│   └── search.provider.controllers.test.js
├── share
│   ├── share.common
│   │   ├── share.common.js
│   │   └── views
│   │   └── form.tpl.html
│   ├── share.email
│   │   ├── share.email.js
│   │   └── test
│   │   └── share.email.test.js
│   ├── share.js
│   ├── share.pdf
│   │   ├── share.pdf.js
│   │   └── test
│   │   └── share.pdf.test.js
│   └── share.services.js
├── support
│   ├── less
│   │   └── support.less
│   ├── support.controllers.js
│   ├── support.js
│   ├── support.services.js
│   ├── test
│   │   └── support.test.js
│   └── views
│   ├── support.disclosures.tpl.html
│   ├── support.glossary.tpl.html
│   ├── support.help.tpl.html
│   ├── support.home.tpl.html
│   ├── support.privacy.policy.tpl.html
│   ├── support.prs.accept_terms.tpl.html
│   ├── support.prs.tos.tpl.html
│   ├── support.termsofuse.tpl.html
│   └── support.tpl.html
├── wayfinding
│   ├── less
│   │   └── wayfinding.less
│   ├── test
│   │   └── wayfinding.test.js
│   ├── views
│   │   └── wayfinding.tpl.html
│   ├── wayfinding.controllers.js
│   ├── wayfinding.js
│   └── wayfinding.services.js
└── webtrends
├── scripts
│   └── webtrends.js
└── webtrends.load.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment