├── .gitignore ├── HealthKit ├── HKConnect.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── HKConnect.xccheckout │ │ └── xcuserdata │ │ │ └── bos.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── HKConnect.xcscheme │ └── xcuserdata │ │ └── bos.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── HKConnect │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── HKConnect-Prefix.pch │ ├── HKConnect.entitlements │ ├── HealthStore.plist │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-72.png │ │ │ ├── Icon-72@2x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small-1.png │ │ │ ├── Icon-Small-50.png │ │ │ ├── Icon-Small-50@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x-1.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── Icon-Spotlight-40.png │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ ├── Icon-Spotlight-40@3x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ ├── Characteristics.imageset │ │ │ ├── Contents.json │ │ │ ├── user.png │ │ │ ├── user@2x.png │ │ │ └── user@3x.png │ │ ├── Logo.imageset │ │ │ ├── Contents.json │ │ │ ├── Logo.png │ │ │ ├── Logo@2x.png │ │ │ └── Logo@3x.png │ │ └── Samples.imageset │ │ │ ├── Contents.json │ │ │ ├── heart.png │ │ │ ├── heart@2x.png │ │ │ └── heart@3x.png │ ├── Info.plist │ ├── MARCharacteristicsViewController.h │ ├── MARCharacteristicsViewController.m │ ├── MARExportSettings.h │ ├── MARExportSettings.m │ ├── MARExportViewController.h │ ├── MARExportViewController.m │ ├── MARGlobals.h │ ├── MARHealthStore.h │ ├── MARHealthStore.m │ ├── MARImportData.h │ ├── MARImportData.m │ ├── MARLogFormatter.h │ ├── MARLogFormatter.m │ ├── MARSampleViewCell.h │ ├── MARSampleViewCell.m │ ├── MARSamplesViewController.h │ ├── MARSamplesViewController.m │ ├── NSDate+MARAdditions.h │ ├── NSDate+MARAdditions.m │ ├── iTunesArtwork │ ├── iTunesArtwork@2x │ └── main.m ├── Podfile ├── README.md └── Vendor │ ├── Crashlytics.framework │ ├── Crashlytics │ ├── Headers │ ├── Modules │ ├── Resources │ ├── Versions │ │ ├── A │ │ │ ├── Crashlytics │ │ │ ├── Headers │ │ │ │ └── Crashlytics.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ └── Current │ ├── run │ └── submit │ └── Fabric.framework │ ├── Fabric │ ├── Headers │ ├── Modules │ ├── Resources │ ├── Versions │ ├── A │ │ ├── Fabric │ │ ├── Headers │ │ │ └── Fabric.h │ │ ├── Modules │ │ │ └── module.modulemap │ │ └── Resources │ │ │ └── Info.plist │ └── Current │ └── run ├── README.md ├── demo ├── demographics │ ├── bootflat │ │ ├── css │ │ │ ├── bootflat.css │ │ │ ├── bootflat.css.map │ │ │ └── bootflat.min.css │ │ ├── img │ │ │ └── check_flat │ │ │ │ ├── default.png │ │ │ │ └── default.psd │ │ ├── js │ │ │ ├── icheck.min.js │ │ │ ├── jquery.fs.selecter.min.js │ │ │ └── jquery.fs.stepper.min.js │ │ └── scss │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── bootflat.scss │ │ │ └── bootflat │ │ │ ├── _accordion.scss │ │ │ ├── _alert.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button.scss │ │ │ ├── _button_group.scss │ │ │ ├── _calendar.scss │ │ │ ├── _checkbox_radio.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _footer.scss │ │ │ ├── _form.scss │ │ │ ├── _global.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _label_badge.scss │ │ │ ├── _list.scss │ │ │ ├── _media_list.scss │ │ │ ├── _modal.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panel.scss │ │ │ ├── _pill.scss │ │ │ ├── _popover.scss │ │ │ ├── _pricing.scss │ │ │ ├── _progress.scss │ │ │ ├── _selecter.scss │ │ │ ├── _stepper.scss │ │ │ ├── _tab.scss │ │ │ ├── _thumbnail.scss │ │ │ ├── _timeline.scss │ │ │ ├── _toggle.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _typography.scss │ │ │ └── _well.scss │ ├── css │ │ ├── bootstrap.min.css │ │ ├── demographics.css │ │ └── font-awesome.css │ ├── demographics.html │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ ├── bootstrap.min.js │ │ ├── demographics.js │ │ ├── jquery-2.1.1.min.js │ │ ├── jquery-2.1.1.min.map │ │ └── jquery-ui-1.10.4.min.js ├── flip-emr │ ├── bootflat │ │ ├── css │ │ │ ├── bootflat.css │ │ │ ├── bootflat.css.map │ │ │ └── bootflat.min.css │ │ ├── img │ │ │ └── check_flat │ │ │ │ ├── default.png │ │ │ │ └── default.psd │ │ ├── js │ │ │ └── icheck.min.js │ │ └── scss │ │ │ ├── bootflat.scss │ │ │ └── bootflat │ │ │ ├── _accordion.scss │ │ │ ├── _alert.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button.scss │ │ │ ├── _button_group.scss │ │ │ ├── _checkbox_radio.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _footer.scss │ │ │ ├── _form.scss │ │ │ ├── _global.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _label_badge.scss │ │ │ ├── _list.scss │ │ │ ├── _media_list.scss │ │ │ ├── _modal.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panel.scss │ │ │ ├── _pill.scss │ │ │ ├── _popover.scss │ │ │ ├── _progress.scss │ │ │ ├── _tab.scss │ │ │ ├── _thumbnail.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _typography.scss │ │ │ └── _well.scss │ ├── css │ │ ├── bookblock.css │ │ ├── bootstrap.min.css │ │ ├── default.css │ │ ├── flip.css │ │ ├── font-awesome.css │ │ └── pushy.css │ ├── fonts │ │ ├── fontAwesome │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── allergies.png │ │ ├── bg.png │ │ ├── heartbeat-white.png │ │ ├── lab-rep.png │ │ ├── med-dia.png │ │ ├── meds.png │ │ └── vital-signs.png │ ├── index.html │ └── js │ │ ├── bootstrap.min.js │ │ ├── flip.js │ │ ├── handlebars-v1.3.0.js │ │ ├── jquery-2.1.1.min.js │ │ ├── jquery-2.1.1.min.map │ │ ├── jquery.bookblock.js │ │ ├── jquery.touchSwipe-1.2.5.js │ │ ├── modernizr.custom.js │ │ └── pushy.js ├── forms │ ├── angular │ │ └── 1.3.2 │ │ │ ├── angular-animate.js │ │ │ ├── angular-animate.min.js │ │ │ ├── angular-animate.min.js.map │ │ │ ├── angular-aria.js │ │ │ ├── angular-aria.min.js │ │ │ ├── angular-aria.min.js.map │ │ │ ├── angular-cookies.js │ │ │ ├── angular-cookies.min.js │ │ │ ├── angular-cookies.min.js.map │ │ │ ├── angular-csp.css │ │ │ ├── angular-loader.js │ │ │ ├── angular-loader.min.js │ │ │ ├── angular-loader.min.js.map │ │ │ ├── angular-messages.js │ │ │ ├── angular-messages.min.js │ │ │ ├── angular-messages.min.js.map │ │ │ ├── angular-mocks.js │ │ │ ├── angular-resource.js │ │ │ ├── angular-resource.min.js │ │ │ ├── angular-resource.min.js.map │ │ │ ├── angular-route.js │ │ │ ├── angular-route.min.js │ │ │ ├── angular-route.min.js.map │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-sanitize.min.js │ │ │ ├── angular-sanitize.min.js.map │ │ │ ├── angular-scenario.js │ │ │ ├── angular-touch.js │ │ │ ├── angular-touch.min.js │ │ │ ├── angular-touch.min.js.map │ │ │ ├── angular.js │ │ │ ├── angular.min.js │ │ │ ├── angular.min.js.map │ │ │ ├── docs │ │ │ ├── Error404.html │ │ │ ├── components │ │ │ │ ├── bootstrap-3.1.1 │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ └── bootstrap.min.js │ │ │ │ ├── google-code-prettify-1.0.1 │ │ │ │ │ ├── CHANGES.html │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── README-zh-Hans.html │ │ │ │ │ ├── README.html │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── lang-apollo.js │ │ │ │ │ │ ├── lang-clj.js │ │ │ │ │ │ ├── lang-css.js │ │ │ │ │ │ ├── lang-dart.js │ │ │ │ │ │ ├── lang-go.js │ │ │ │ │ │ ├── lang-hs.js │ │ │ │ │ │ ├── lang-lisp.js │ │ │ │ │ │ ├── lang-lua.js │ │ │ │ │ │ ├── lang-ml.js │ │ │ │ │ │ ├── lang-n.js │ │ │ │ │ │ ├── lang-proto.js │ │ │ │ │ │ ├── lang-scala.js │ │ │ │ │ │ ├── lang-sql.js │ │ │ │ │ │ ├── lang-tex.js │ │ │ │ │ │ ├── lang-vb.js │ │ │ │ │ │ ├── lang-vhdl.js │ │ │ │ │ │ ├── lang-wiki.js │ │ │ │ │ │ ├── lang-xq.js │ │ │ │ │ │ ├── lang-yaml.js │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ └── prettify.js │ │ │ │ │ └── styles │ │ │ │ │ │ ├── demo.html │ │ │ │ │ │ ├── desert.css │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── sons-of-obsidian.css │ │ │ │ │ │ └── sunburst.css │ │ │ │ ├── jquery-2.1.1 │ │ │ │ │ ├── jquery.js │ │ │ │ │ └── jquery.min.js │ │ │ │ ├── lunr.js-0.4.2 │ │ │ │ │ ├── lunr.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── server.js │ │ │ │ ├── marked-0.3.2 │ │ │ │ │ ├── index.js │ │ │ │ │ └── lib │ │ │ │ │ │ └── marked.js │ │ │ │ └── open-sans-fontface-1.0.4 │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── fonts │ │ │ │ │ ├── Bold │ │ │ │ │ │ ├── OpenSans-Bold.eot │ │ │ │ │ │ ├── OpenSans-Bold.svg │ │ │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ │ │ └── OpenSans-Bold.woff │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ ├── OpenSans-BoldItalic.eot │ │ │ │ │ │ ├── OpenSans-BoldItalic.svg │ │ │ │ │ │ ├── OpenSans-BoldItalic.ttf │ │ │ │ │ │ └── OpenSans-BoldItalic.woff │ │ │ │ │ ├── ExtraBold │ │ │ │ │ │ ├── OpenSans-ExtraBold.eot │ │ │ │ │ │ ├── OpenSans-ExtraBold.svg │ │ │ │ │ │ ├── OpenSans-ExtraBold.ttf │ │ │ │ │ │ └── OpenSans-ExtraBold.woff │ │ │ │ │ ├── ExtraBoldItalic │ │ │ │ │ │ ├── OpenSans-ExtraBoldItalic.eot │ │ │ │ │ │ ├── OpenSans-ExtraBoldItalic.svg │ │ │ │ │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ │ │ │ │ └── OpenSans-ExtraBoldItalic.woff │ │ │ │ │ ├── Italic │ │ │ │ │ │ ├── OpenSans-Italic.eot │ │ │ │ │ │ ├── OpenSans-Italic.svg │ │ │ │ │ │ ├── OpenSans-Italic.ttf │ │ │ │ │ │ └── OpenSans-Italic.woff │ │ │ │ │ ├── Light │ │ │ │ │ │ ├── OpenSans-Light.eot │ │ │ │ │ │ ├── OpenSans-Light.svg │ │ │ │ │ │ ├── OpenSans-Light.ttf │ │ │ │ │ │ └── OpenSans-Light.woff │ │ │ │ │ ├── LightItalic │ │ │ │ │ │ ├── OpenSans-LightItalic.eot │ │ │ │ │ │ ├── OpenSans-LightItalic.svg │ │ │ │ │ │ ├── OpenSans-LightItalic.ttf │ │ │ │ │ │ └── OpenSans-LightItalic.woff │ │ │ │ │ ├── Regular │ │ │ │ │ │ ├── OpenSans-Regular.eot │ │ │ │ │ │ ├── OpenSans-Regular.svg │ │ │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ │ │ └── OpenSans-Regular.woff │ │ │ │ │ ├── Semibold │ │ │ │ │ │ ├── OpenSans-Semibold.eot │ │ │ │ │ │ ├── OpenSans-Semibold.svg │ │ │ │ │ │ ├── OpenSans-Semibold.ttf │ │ │ │ │ │ └── OpenSans-Semibold.woff │ │ │ │ │ └── SemiboldItalic │ │ │ │ │ │ ├── OpenSans-SemiboldItalic.eot │ │ │ │ │ │ ├── OpenSans-SemiboldItalic.svg │ │ │ │ │ │ ├── OpenSans-SemiboldItalic.ttf │ │ │ │ │ │ └── OpenSans-SemiboldItalic.woff │ │ │ │ │ ├── index.html │ │ │ │ │ ├── open-sans.css │ │ │ │ │ ├── open-sans.less │ │ │ │ │ └── open-sans.scss │ │ │ ├── css │ │ │ │ ├── animations.css │ │ │ │ ├── doc_widgets.css │ │ │ │ ├── docs.css │ │ │ │ ├── prettify-theme.css │ │ │ │ └── prettify.css │ │ │ ├── examples │ │ │ │ ├── example-$filter │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-$route-service │ │ │ │ │ ├── book.html │ │ │ │ │ ├── chapter.html │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── script.js │ │ │ │ ├── example-NgModelController │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ ├── script.js │ │ │ │ │ └── style.css │ │ │ │ ├── example-checkbox-input-directive │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-date-input-directive │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-datetimelocal-input-directive │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-email-input-directive │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-error-$rootScope-inprog │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example.csp │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── script.js │ │ │ │ ├── example-example │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example1 │ │ │ │ │ ├── animations.css │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example10 │ │ │ │ │ ├── customer-address.html │ │ │ │ │ ├── customer-name.html │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example100 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example101 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example102 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example103 │ │ │ │ │ ├── http-hello.html │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── script.js │ │ │ │ ├── example-example104 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example105 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example106 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example107 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example108 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ ├── script.js │ │ │ │ │ └── test_data.json │ │ │ │ ├── example-example109 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example11 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── my-customer.html │ │ │ │ │ └── script.js │ │ │ │ ├── example-example110 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example111 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example112 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example113 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example114 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example12 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── my-customer.html │ │ │ │ │ └── script.js │ │ │ │ ├── example-example13 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── my-customer-iso.html │ │ │ │ │ └── script.js │ │ │ │ ├── example-example14 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── my-customer-plus-vojta.html │ │ │ │ │ └── script.js │ │ │ │ ├── example-example15 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example16 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── my-dialog.html │ │ │ │ │ └── script.js │ │ │ │ ├── example-example17 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── my-dialog.html │ │ │ │ │ └── script.js │ │ │ │ ├── example-example18 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── my-dialog-close.html │ │ │ │ │ └── script.js │ │ │ │ ├── example-example19 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example2 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── style.css │ │ │ │ ├── example-example20 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── my-pane.html │ │ │ │ │ ├── my-tabs.html │ │ │ │ │ └── script.js │ │ │ │ ├── example-example21 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example22 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── script.js │ │ │ │ ├── example-example23 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── script.js │ │ │ │ ├── example-example24 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example25 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── script.js │ │ │ │ ├── example-example26 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example27 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example28 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example29 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example3 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example30 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example31 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example32 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example33 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example34 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example35 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example36 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example37 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── script.js │ │ │ │ ├── example-example38 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── script.js │ │ │ │ ├── example-example39 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example4 │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example40 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── script.js │ │ │ │ │ └── style.css │ │ │ │ ├── example-example41 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example42 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── script.js │ │ │ │ ├── example-example43 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example44 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example45 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── script.js │ │ │ │ │ └── style.css │ │ │ │ ├── example-example46 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── script.js │ │ │ │ │ └── style.css │ │ │ │ ├── example-example47 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── script.js │ │ │ │ │ └── style.css │ │ │ │ ├── example-example48 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── script.js │ │ │ │ │ └── style.css │ │ │ │ ├── example-example49 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example5 │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example50 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example51 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example52 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example53 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example54 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example55 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example56 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example57 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example58 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example59 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example6 │ │ │ │ │ ├── app.css │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example60 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── script.js │ │ │ │ ├── example-example61 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── style.css │ │ │ │ ├── example-example62 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── style.css │ │ │ │ ├── example-example63 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── style.css │ │ │ │ ├── example-example64 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── style.css │ │ │ │ ├── example-example65 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example66 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example67 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example68 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example69 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example7 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── script.js │ │ │ │ ├── example-example70 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example71 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example72 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example73 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example74 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example75 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example76 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example77 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example78 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example79 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example8 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example80 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example81 │ │ │ │ │ ├── animations.css │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-example82 │ │ │ │ │ ├── animations.css │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ ├── script.js │ │ │ │ │ ├── template1.html │ │ │ │ │ └── template2.html │ │ │ │ ├── example-example83 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example84 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example85 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example86 │ │ │ │ │ ├── animations.css │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example87 │ │ │ │ │ ├── animations.css │ │ │ │ │ ├── glyphicons.css │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example88 │ │ │ │ │ ├── animations.css │ │ │ │ │ ├── glyphicons.css │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example89 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── style.css │ │ │ │ ├── example-example9 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── my-customer.html │ │ │ │ │ └── script.js │ │ │ │ ├── example-example90 │ │ │ │ │ ├── animations.css │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── script.js │ │ │ │ ├── example-example91 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example92 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example93 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example94 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-example95 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example96 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example97 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example98 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-example99 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-guide-concepts-1 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-guide-concepts-2 │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── invoice1.js │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-guide-concepts-21 │ │ │ │ │ ├── finance2.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── invoice2.js │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-guide-concepts-3 │ │ │ │ │ ├── finance3.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── invoice3.js │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-input-directive │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-location-hashbang-mode │ │ │ │ │ ├── addressBar.js │ │ │ │ │ ├── app.js │ │ │ │ │ ├── fakeBrowser.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-location-html5-mode │ │ │ │ │ ├── addressBar.js │ │ │ │ │ ├── app.js │ │ │ │ │ ├── fakeBrowser.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-month-input-directive │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-ng-model-cancel-update │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-ngChange-directive │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-ngController │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-ngControllerAs │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-ngList-directive-newlines │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-ngList-directive │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-ngMessages-directive │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── script.js │ │ │ │ ├── example-ngModel-getter-setter │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-ngModelOptions-directive-blur │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-ngModelOptions-directive-debounce │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-ngModelOptions-directive-getter-setter │ │ │ │ │ ├── app.js │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── manifest.json │ │ │ │ ├── example-ngValue-directive │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-ngView-directive │ │ │ │ │ ├── animations.css │ │ │ │ │ ├── book.html │ │ │ │ │ ├── chapter.html │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── protractor.js │ │ │ │ │ └── script.js │ │ │ │ ├── example-number-input-directive │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-radio-input-directive │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-text-input-directive │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-time-input-directive │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ ├── example-url-input-directive │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ │ └── example-week-input-directive │ │ │ │ │ ├── index-debug.html │ │ │ │ │ ├── index-jquery.html │ │ │ │ │ ├── index-production.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── protractor.js │ │ │ ├── img │ │ │ │ ├── AngularJS-small.png │ │ │ │ ├── One_Way_Data_Binding.png │ │ │ │ ├── Two_Way_Data_Binding.png │ │ │ │ ├── angular_parts.png │ │ │ │ ├── angularjs-for-header-only.svg │ │ │ │ ├── bullet.png │ │ │ │ ├── form_data_flow.png │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ ├── guide │ │ │ │ │ ├── concepts-databinding1.png │ │ │ │ │ ├── concepts-databinding2.png │ │ │ │ │ ├── concepts-directive.png │ │ │ │ │ ├── concepts-module-injector.png │ │ │ │ │ ├── concepts-module-service.png │ │ │ │ │ ├── concepts-runtime.png │ │ │ │ │ ├── concepts-scope-watch-strategies.png │ │ │ │ │ ├── concepts-scope.png │ │ │ │ │ ├── concepts-startup.png │ │ │ │ │ ├── concepts-view.png │ │ │ │ │ ├── di_sequence_final.png │ │ │ │ │ ├── dom_scope_final.png │ │ │ │ │ ├── forms-debounce.gif │ │ │ │ │ ├── forms-update-on-blur.gif │ │ │ │ │ ├── hashbang_vs_regular_url.jpg │ │ │ │ │ ├── scenario_runner.png │ │ │ │ │ └── simple_scope_final.png │ │ │ │ ├── helloworld.png │ │ │ │ ├── helloworld_2way.png │ │ │ │ └── tutorial │ │ │ │ │ ├── catalog_screen.png │ │ │ │ │ ├── tutorial_00.png │ │ │ │ │ ├── tutorial_00_final.png │ │ │ │ │ ├── tutorial_02.png │ │ │ │ │ ├── tutorial_03.png │ │ │ │ │ ├── tutorial_04.png │ │ │ │ │ ├── tutorial_05.png │ │ │ │ │ ├── tutorial_05.pptx │ │ │ │ │ ├── tutorial_07_final.png │ │ │ │ │ ├── tutorial_08-09_final.png │ │ │ │ │ ├── tutorial_10-11_final.png │ │ │ │ │ └── xhr_service_final.png │ │ │ ├── index-debug.html │ │ │ ├── index-jquery.html │ │ │ ├── index-production.html │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── angular-bootstrap │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── bootstrap.min.js.map │ │ │ │ │ ├── dropdown-toggle.js │ │ │ │ │ ├── dropdown-toggle.min.js │ │ │ │ │ └── dropdown-toggle.min.js.map │ │ │ │ ├── docs.js │ │ │ │ ├── docs.min.js │ │ │ │ ├── docs.min.js.map │ │ │ │ ├── nav-data.js │ │ │ │ ├── pages-data.js │ │ │ │ ├── search-data.json │ │ │ │ ├── search-worker.js │ │ │ │ ├── search-worker.min.js │ │ │ │ ├── search-worker.min.js.map │ │ │ │ └── versions-data.js │ │ │ ├── partials │ │ │ │ ├── api.html │ │ │ │ ├── api │ │ │ │ │ ├── auto.html │ │ │ │ │ ├── auto │ │ │ │ │ │ ├── service.html │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── $injector.html │ │ │ │ │ │ │ └── $provide.html │ │ │ │ │ ├── ng.html │ │ │ │ │ ├── ng │ │ │ │ │ │ ├── directive.html │ │ │ │ │ │ ├── directive │ │ │ │ │ │ │ ├── a.html │ │ │ │ │ │ │ ├── form.html │ │ │ │ │ │ │ ├── input.html │ │ │ │ │ │ │ ├── ngApp.html │ │ │ │ │ │ │ ├── ngBind.html │ │ │ │ │ │ │ ├── ngBindHtml.html │ │ │ │ │ │ │ ├── ngBindTemplate.html │ │ │ │ │ │ │ ├── ngBlur.html │ │ │ │ │ │ │ ├── ngChange.html │ │ │ │ │ │ │ ├── ngChecked.html │ │ │ │ │ │ │ ├── ngClass.html │ │ │ │ │ │ │ ├── ngClassEven.html │ │ │ │ │ │ │ ├── ngClassOdd.html │ │ │ │ │ │ │ ├── ngClick.html │ │ │ │ │ │ │ ├── ngCloak.html │ │ │ │ │ │ │ ├── ngController.html │ │ │ │ │ │ │ ├── ngCopy.html │ │ │ │ │ │ │ ├── ngCsp.html │ │ │ │ │ │ │ ├── ngCut.html │ │ │ │ │ │ │ ├── ngDblclick.html │ │ │ │ │ │ │ ├── ngDisabled.html │ │ │ │ │ │ │ ├── ngFocus.html │ │ │ │ │ │ │ ├── ngForm.html │ │ │ │ │ │ │ ├── ngHide.html │ │ │ │ │ │ │ ├── ngHref.html │ │ │ │ │ │ │ ├── ngIf.html │ │ │ │ │ │ │ ├── ngInclude.html │ │ │ │ │ │ │ ├── ngInit.html │ │ │ │ │ │ │ ├── ngKeydown.html │ │ │ │ │ │ │ ├── ngKeypress.html │ │ │ │ │ │ │ ├── ngKeyup.html │ │ │ │ │ │ │ ├── ngList.html │ │ │ │ │ │ │ ├── ngModel.html │ │ │ │ │ │ │ ├── ngModelOptions.html │ │ │ │ │ │ │ ├── ngMousedown.html │ │ │ │ │ │ │ ├── ngMouseenter.html │ │ │ │ │ │ │ ├── ngMouseleave.html │ │ │ │ │ │ │ ├── ngMousemove.html │ │ │ │ │ │ │ ├── ngMouseover.html │ │ │ │ │ │ │ ├── ngMouseup.html │ │ │ │ │ │ │ ├── ngNonBindable.html │ │ │ │ │ │ │ ├── ngOpen.html │ │ │ │ │ │ │ ├── ngPaste.html │ │ │ │ │ │ │ ├── ngPluralize.html │ │ │ │ │ │ │ ├── ngReadonly.html │ │ │ │ │ │ │ ├── ngRepeat.html │ │ │ │ │ │ │ ├── ngSelected.html │ │ │ │ │ │ │ ├── ngShow.html │ │ │ │ │ │ │ ├── ngSrc.html │ │ │ │ │ │ │ ├── ngSrcset.html │ │ │ │ │ │ │ ├── ngStyle.html │ │ │ │ │ │ │ ├── ngSubmit.html │ │ │ │ │ │ │ ├── ngSwitch.html │ │ │ │ │ │ │ ├── ngTransclude.html │ │ │ │ │ │ │ ├── ngValue.html │ │ │ │ │ │ │ ├── script.html │ │ │ │ │ │ │ ├── select.html │ │ │ │ │ │ │ └── textarea.html │ │ │ │ │ │ ├── filter.html │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ ├── currency.html │ │ │ │ │ │ │ ├── date.html │ │ │ │ │ │ │ ├── filter.html │ │ │ │ │ │ │ ├── json.html │ │ │ │ │ │ │ ├── limitTo.html │ │ │ │ │ │ │ ├── lowercase.html │ │ │ │ │ │ │ ├── number.html │ │ │ │ │ │ │ ├── orderBy.html │ │ │ │ │ │ │ └── uppercase.html │ │ │ │ │ │ ├── function.html │ │ │ │ │ │ ├── function │ │ │ │ │ │ │ ├── angular.bind.html │ │ │ │ │ │ │ ├── angular.bootstrap.html │ │ │ │ │ │ │ ├── angular.copy.html │ │ │ │ │ │ │ ├── angular.element.html │ │ │ │ │ │ │ ├── angular.equals.html │ │ │ │ │ │ │ ├── angular.extend.html │ │ │ │ │ │ │ ├── angular.forEach.html │ │ │ │ │ │ │ ├── angular.fromJson.html │ │ │ │ │ │ │ ├── angular.identity.html │ │ │ │ │ │ │ ├── angular.injector.html │ │ │ │ │ │ │ ├── angular.isArray.html │ │ │ │ │ │ │ ├── angular.isDate.html │ │ │ │ │ │ │ ├── angular.isDefined.html │ │ │ │ │ │ │ ├── angular.isElement.html │ │ │ │ │ │ │ ├── angular.isFunction.html │ │ │ │ │ │ │ ├── angular.isNumber.html │ │ │ │ │ │ │ ├── angular.isObject.html │ │ │ │ │ │ │ ├── angular.isString.html │ │ │ │ │ │ │ ├── angular.isUndefined.html │ │ │ │ │ │ │ ├── angular.lowercase.html │ │ │ │ │ │ │ ├── angular.module.html │ │ │ │ │ │ │ ├── angular.noop.html │ │ │ │ │ │ │ ├── angular.reloadWithDebugInfo.html │ │ │ │ │ │ │ ├── angular.toJson.html │ │ │ │ │ │ │ └── angular.uppercase.html │ │ │ │ │ │ ├── input.html │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── input[checkbox].html │ │ │ │ │ │ │ ├── input[date].html │ │ │ │ │ │ │ ├── input[datetime-local].html │ │ │ │ │ │ │ ├── input[email].html │ │ │ │ │ │ │ ├── input[month].html │ │ │ │ │ │ │ ├── input[number].html │ │ │ │ │ │ │ ├── input[radio].html │ │ │ │ │ │ │ ├── input[text].html │ │ │ │ │ │ │ ├── input[time].html │ │ │ │ │ │ │ ├── input[url].html │ │ │ │ │ │ │ └── input[week].html │ │ │ │ │ │ ├── object.html │ │ │ │ │ │ ├── object │ │ │ │ │ │ │ └── angular.version.html │ │ │ │ │ │ ├── provider.html │ │ │ │ │ │ ├── provider │ │ │ │ │ │ │ ├── $anchorScrollProvider.html │ │ │ │ │ │ │ ├── $animateProvider.html │ │ │ │ │ │ │ ├── $compileProvider.html │ │ │ │ │ │ │ ├── $controllerProvider.html │ │ │ │ │ │ │ ├── $filterProvider.html │ │ │ │ │ │ │ ├── $httpProvider.html │ │ │ │ │ │ │ ├── $interpolateProvider.html │ │ │ │ │ │ │ ├── $locationProvider.html │ │ │ │ │ │ │ ├── $logProvider.html │ │ │ │ │ │ │ ├── $parseProvider.html │ │ │ │ │ │ │ ├── $rootScopeProvider.html │ │ │ │ │ │ │ ├── $sceDelegateProvider.html │ │ │ │ │ │ │ └── $sceProvider.html │ │ │ │ │ │ ├── service.html │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ ├── $anchorScroll.html │ │ │ │ │ │ │ ├── $animate.html │ │ │ │ │ │ │ ├── $cacheFactory.html │ │ │ │ │ │ │ ├── $compile.html │ │ │ │ │ │ │ ├── $controller.html │ │ │ │ │ │ │ ├── $document.html │ │ │ │ │ │ │ ├── $exceptionHandler.html │ │ │ │ │ │ │ ├── $filter.html │ │ │ │ │ │ │ ├── $http.html │ │ │ │ │ │ │ ├── $httpBackend.html │ │ │ │ │ │ │ ├── $interpolate.html │ │ │ │ │ │ │ ├── $interval.html │ │ │ │ │ │ │ ├── $locale.html │ │ │ │ │ │ │ ├── $location.html │ │ │ │ │ │ │ ├── $log.html │ │ │ │ │ │ │ ├── $parse.html │ │ │ │ │ │ │ ├── $q.html │ │ │ │ │ │ │ ├── $rootElement.html │ │ │ │ │ │ │ ├── $rootScope.html │ │ │ │ │ │ │ ├── $sce.html │ │ │ │ │ │ │ ├── $sceDelegate.html │ │ │ │ │ │ │ ├── $templateCache.html │ │ │ │ │ │ │ ├── $templateRequest.html │ │ │ │ │ │ │ ├── $timeout.html │ │ │ │ │ │ │ └── $window.html │ │ │ │ │ │ ├── type.html │ │ │ │ │ │ └── type │ │ │ │ │ │ │ ├── $cacheFactory.Cache.html │ │ │ │ │ │ │ ├── $compile.directive.Attributes.html │ │ │ │ │ │ │ ├── $rootScope.Scope.html │ │ │ │ │ │ │ ├── angular.Module.html │ │ │ │ │ │ │ ├── form.FormController.html │ │ │ │ │ │ │ └── ngModel.NgModelController.html │ │ │ │ │ ├── ngAnimate.html │ │ │ │ │ ├── ngAnimate │ │ │ │ │ │ ├── provider.html │ │ │ │ │ │ ├── provider │ │ │ │ │ │ │ └── $animateProvider.html │ │ │ │ │ │ ├── service.html │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── $animate.html │ │ │ │ │ ├── ngAria.html │ │ │ │ │ ├── ngAria │ │ │ │ │ │ ├── provider.html │ │ │ │ │ │ ├── provider │ │ │ │ │ │ │ └── $ariaProvider.html │ │ │ │ │ │ ├── service.html │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── $aria.html │ │ │ │ │ ├── ngCookies.html │ │ │ │ │ ├── ngCookies │ │ │ │ │ │ ├── service.html │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── $cookieStore.html │ │ │ │ │ │ │ └── $cookies.html │ │ │ │ │ ├── ngMessages.html │ │ │ │ │ ├── ngMessages │ │ │ │ │ │ ├── directive.html │ │ │ │ │ │ └── directive │ │ │ │ │ │ │ ├── ngMessage.html │ │ │ │ │ │ │ └── ngMessages.html │ │ │ │ │ ├── ngMock.html │ │ │ │ │ ├── ngMock │ │ │ │ │ │ ├── function.html │ │ │ │ │ │ ├── function │ │ │ │ │ │ │ ├── angular.mock.dump.html │ │ │ │ │ │ │ ├── angular.mock.inject.html │ │ │ │ │ │ │ └── angular.mock.module.html │ │ │ │ │ │ ├── object.html │ │ │ │ │ │ ├── object │ │ │ │ │ │ │ └── angular.mock.html │ │ │ │ │ │ ├── provider.html │ │ │ │ │ │ ├── provider │ │ │ │ │ │ │ └── $exceptionHandlerProvider.html │ │ │ │ │ │ ├── service.html │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ ├── $exceptionHandler.html │ │ │ │ │ │ │ ├── $httpBackend.html │ │ │ │ │ │ │ ├── $interval.html │ │ │ │ │ │ │ ├── $log.html │ │ │ │ │ │ │ └── $timeout.html │ │ │ │ │ │ ├── type.html │ │ │ │ │ │ └── type │ │ │ │ │ │ │ ├── $rootScope.Scope.html │ │ │ │ │ │ │ └── angular.mock.TzDate.html │ │ │ │ │ ├── ngMockE2E.html │ │ │ │ │ ├── ngMockE2E │ │ │ │ │ │ ├── service.html │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── $httpBackend.html │ │ │ │ │ ├── ngResource.html │ │ │ │ │ ├── ngResource │ │ │ │ │ │ ├── service.html │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── $resource.html │ │ │ │ │ ├── ngRoute.html │ │ │ │ │ ├── ngRoute │ │ │ │ │ │ ├── directive.html │ │ │ │ │ │ ├── directive │ │ │ │ │ │ │ └── ngView.html │ │ │ │ │ │ ├── provider.html │ │ │ │ │ │ ├── provider │ │ │ │ │ │ │ └── $routeProvider.html │ │ │ │ │ │ ├── service.html │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── $route.html │ │ │ │ │ │ │ └── $routeParams.html │ │ │ │ │ ├── ngSanitize.html │ │ │ │ │ ├── ngSanitize │ │ │ │ │ │ ├── filter.html │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ └── linky.html │ │ │ │ │ │ ├── service.html │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── $sanitize.html │ │ │ │ │ ├── ngTouch.html │ │ │ │ │ └── ngTouch │ │ │ │ │ │ ├── directive.html │ │ │ │ │ │ ├── directive │ │ │ │ │ │ ├── ngClick.html │ │ │ │ │ │ ├── ngSwipeLeft.html │ │ │ │ │ │ └── ngSwipeRight.html │ │ │ │ │ │ ├── service.html │ │ │ │ │ │ └── service │ │ │ │ │ │ └── $swipe.html │ │ │ │ ├── error.html │ │ │ │ ├── error │ │ │ │ │ ├── $animate.html │ │ │ │ │ ├── $animate │ │ │ │ │ │ └── notcsel.html │ │ │ │ │ ├── $cacheFactory.html │ │ │ │ │ ├── $cacheFactory │ │ │ │ │ │ └── iid.html │ │ │ │ │ ├── $compile.html │ │ │ │ │ ├── $compile │ │ │ │ │ │ ├── ctreq.html │ │ │ │ │ │ ├── iscp.html │ │ │ │ │ │ ├── multidir.html │ │ │ │ │ │ ├── nodomevents.html │ │ │ │ │ │ ├── nonassign.html │ │ │ │ │ │ ├── selmulti.html │ │ │ │ │ │ ├── tpload.html │ │ │ │ │ │ ├── tplrt.html │ │ │ │ │ │ └── uterdir.html │ │ │ │ │ ├── $controller.html │ │ │ │ │ ├── $controller │ │ │ │ │ │ └── noscp.html │ │ │ │ │ ├── $injector.html │ │ │ │ │ ├── $injector │ │ │ │ │ │ ├── cdep.html │ │ │ │ │ │ ├── itkn.html │ │ │ │ │ │ ├── modulerr.html │ │ │ │ │ │ ├── nomod.html │ │ │ │ │ │ ├── pget.html │ │ │ │ │ │ ├── strictdi.html │ │ │ │ │ │ ├── undef.html │ │ │ │ │ │ └── unpr.html │ │ │ │ │ ├── $interpolate.html │ │ │ │ │ ├── $interpolate │ │ │ │ │ │ ├── interr.html │ │ │ │ │ │ └── noconcat.html │ │ │ │ │ ├── $location.html │ │ │ │ │ ├── $location │ │ │ │ │ │ ├── ihshprfx.html │ │ │ │ │ │ ├── ipthprfx.html │ │ │ │ │ │ ├── isrcharg.html │ │ │ │ │ │ ├── nobase.html │ │ │ │ │ │ └── nostate.html │ │ │ │ │ ├── $parse.html │ │ │ │ │ ├── $parse │ │ │ │ │ │ ├── isecdom.html │ │ │ │ │ │ ├── isecff.html │ │ │ │ │ │ ├── isecfld.html │ │ │ │ │ │ ├── isecfn.html │ │ │ │ │ │ ├── isecobj.html │ │ │ │ │ │ ├── isecwindow.html │ │ │ │ │ │ ├── lexerr.html │ │ │ │ │ │ ├── syntax.html │ │ │ │ │ │ └── ueoe.html │ │ │ │ │ ├── $q.html │ │ │ │ │ ├── $q │ │ │ │ │ │ ├── norslvr.html │ │ │ │ │ │ └── qcycle.html │ │ │ │ │ ├── $resource.html │ │ │ │ │ ├── $resource │ │ │ │ │ │ ├── badargs.html │ │ │ │ │ │ ├── badcfg.html │ │ │ │ │ │ ├── badmember.html │ │ │ │ │ │ └── badname.html │ │ │ │ │ ├── $rootScope.html │ │ │ │ │ ├── $rootScope │ │ │ │ │ │ ├── infdig.html │ │ │ │ │ │ └── inprog.html │ │ │ │ │ ├── $sanitize.html │ │ │ │ │ ├── $sanitize │ │ │ │ │ │ └── badparse.html │ │ │ │ │ ├── $sce.html │ │ │ │ │ ├── $sce │ │ │ │ │ │ ├── icontext.html │ │ │ │ │ │ ├── iequirks.html │ │ │ │ │ │ ├── imatcher.html │ │ │ │ │ │ ├── insecurl.html │ │ │ │ │ │ ├── itype.html │ │ │ │ │ │ ├── iwcard.html │ │ │ │ │ │ └── unsafe.html │ │ │ │ │ ├── jqLite.html │ │ │ │ │ ├── jqLite │ │ │ │ │ │ ├── nosel.html │ │ │ │ │ │ ├── offargs.html │ │ │ │ │ │ └── onargs.html │ │ │ │ │ ├── ng.html │ │ │ │ │ ├── ng │ │ │ │ │ │ ├── areq.html │ │ │ │ │ │ ├── badname.html │ │ │ │ │ │ ├── btstrpd.html │ │ │ │ │ │ ├── cpi.html │ │ │ │ │ │ └── cpws.html │ │ │ │ │ ├── ngModel.html │ │ │ │ │ ├── ngModel │ │ │ │ │ │ ├── constexpr.html │ │ │ │ │ │ ├── datefmt.html │ │ │ │ │ │ └── nonassign.html │ │ │ │ │ ├── ngOptions.html │ │ │ │ │ ├── ngOptions │ │ │ │ │ │ ├── iexp.html │ │ │ │ │ │ └── trkslct.html │ │ │ │ │ ├── ngPattern.html │ │ │ │ │ ├── ngPattern │ │ │ │ │ │ └── noregexp.html │ │ │ │ │ ├── ngRepeat.html │ │ │ │ │ ├── ngRepeat │ │ │ │ │ │ ├── badident.html │ │ │ │ │ │ ├── dupes.html │ │ │ │ │ │ ├── iexp.html │ │ │ │ │ │ └── iidexp.html │ │ │ │ │ ├── ngTransclude.html │ │ │ │ │ └── ngTransclude │ │ │ │ │ │ └── orphan.html │ │ │ │ ├── guide.html │ │ │ │ ├── guide │ │ │ │ │ ├── $location.html │ │ │ │ │ ├── accessibility.html │ │ │ │ │ ├── animations.html │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── compiler.html │ │ │ │ │ ├── concepts.html │ │ │ │ │ ├── controller.html │ │ │ │ │ ├── css-styling.html │ │ │ │ │ ├── databinding.html │ │ │ │ │ ├── di.html │ │ │ │ │ ├── directive.html │ │ │ │ │ ├── e2e-testing.html │ │ │ │ │ ├── expression.html │ │ │ │ │ ├── filter.html │ │ │ │ │ ├── forms.html │ │ │ │ │ ├── i18n.html │ │ │ │ │ ├── ie.html │ │ │ │ │ ├── introduction.html │ │ │ │ │ ├── migration.html │ │ │ │ │ ├── module.html │ │ │ │ │ ├── production.html │ │ │ │ │ ├── providers.html │ │ │ │ │ ├── scope.html │ │ │ │ │ ├── services.html │ │ │ │ │ ├── templates.html │ │ │ │ │ └── unit-testing.html │ │ │ │ ├── misc.html │ │ │ │ ├── misc │ │ │ │ │ ├── contribute.html │ │ │ │ │ ├── downloading.html │ │ │ │ │ ├── faq.html │ │ │ │ │ └── started.html │ │ │ │ ├── tutorial.html │ │ │ │ └── tutorial │ │ │ │ │ ├── step_00.html │ │ │ │ │ ├── step_01.html │ │ │ │ │ ├── step_02.html │ │ │ │ │ ├── step_03.html │ │ │ │ │ ├── step_04.html │ │ │ │ │ ├── step_05.html │ │ │ │ │ ├── step_06.html │ │ │ │ │ ├── step_07.html │ │ │ │ │ ├── step_08.html │ │ │ │ │ ├── step_09.html │ │ │ │ │ ├── step_10.html │ │ │ │ │ ├── step_11.html │ │ │ │ │ ├── step_12.html │ │ │ │ │ └── the_end.html │ │ │ └── ptore2e │ │ │ │ ├── example-$route-service │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-NgModelController │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-checkbox-input-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-date-input-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-datetimelocal-input-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-email-input-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example.csp │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example100 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example103 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example104 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example108 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example109 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example110 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example111 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example21 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example22 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example23 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example25 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example37 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example38 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example42 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example49 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example50 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example51 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example52 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example53 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example54 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example55 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example56 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example58 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example59 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example60 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example61 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example62 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example63 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example64 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example65 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example66 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example7 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example77 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example82 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example83 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example84 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example85 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example86 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example87 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example88 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example89 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example90 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example91 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example92 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example93 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example95 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example96 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example97 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example98 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-example99 │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-input-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-location-hashbang-mode │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-location-html5-mode │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-month-input-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-ngChange-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-ngController │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-ngControllerAs │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-ngList-directive-newlines │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-ngList-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-ngModelOptions-directive-blur │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-ngValue-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-ngView-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-number-input-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-radio-input-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-text-input-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-time-input-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ ├── example-url-input-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ │ └── example-week-input-directive │ │ │ │ ├── default_test.js │ │ │ │ └── jquery_test.js │ │ │ ├── errors.json │ │ │ ├── i18n │ │ │ ├── angular-locale_aa-dj.js │ │ │ ├── angular-locale_aa-er.js │ │ │ ├── angular-locale_aa-et.js │ │ │ ├── angular-locale_aa.js │ │ │ ├── angular-locale_af-na.js │ │ │ ├── angular-locale_af-za.js │ │ │ ├── angular-locale_af.js │ │ │ ├── angular-locale_agq-cm.js │ │ │ ├── angular-locale_agq.js │ │ │ ├── angular-locale_ak-gh.js │ │ │ ├── angular-locale_ak.js │ │ │ ├── angular-locale_am-et.js │ │ │ ├── angular-locale_am.js │ │ │ ├── angular-locale_ar-001.js │ │ │ ├── angular-locale_ar-ae.js │ │ │ ├── angular-locale_ar-bh.js │ │ │ ├── angular-locale_ar-dj.js │ │ │ ├── angular-locale_ar-dz.js │ │ │ ├── angular-locale_ar-eg.js │ │ │ ├── angular-locale_ar-eh.js │ │ │ ├── angular-locale_ar-er.js │ │ │ ├── angular-locale_ar-il.js │ │ │ ├── angular-locale_ar-iq.js │ │ │ ├── angular-locale_ar-jo.js │ │ │ ├── angular-locale_ar-km.js │ │ │ ├── angular-locale_ar-kw.js │ │ │ ├── angular-locale_ar-lb.js │ │ │ ├── angular-locale_ar-ly.js │ │ │ ├── angular-locale_ar-ma.js │ │ │ ├── angular-locale_ar-mr.js │ │ │ ├── angular-locale_ar-om.js │ │ │ ├── angular-locale_ar-ps.js │ │ │ ├── angular-locale_ar-qa.js │ │ │ ├── angular-locale_ar-sa.js │ │ │ ├── angular-locale_ar-sd.js │ │ │ ├── angular-locale_ar-so.js │ │ │ ├── angular-locale_ar-ss.js │ │ │ ├── angular-locale_ar-sy.js │ │ │ ├── angular-locale_ar-td.js │ │ │ ├── angular-locale_ar-tn.js │ │ │ ├── angular-locale_ar-ye.js │ │ │ ├── angular-locale_ar.js │ │ │ ├── angular-locale_as-in.js │ │ │ ├── angular-locale_as.js │ │ │ ├── angular-locale_asa-tz.js │ │ │ ├── angular-locale_asa.js │ │ │ ├── angular-locale_ast-es.js │ │ │ ├── angular-locale_ast.js │ │ │ ├── angular-locale_az-cyrl-az.js │ │ │ ├── angular-locale_az-cyrl.js │ │ │ ├── angular-locale_az-latn-az.js │ │ │ ├── angular-locale_az-latn.js │ │ │ ├── angular-locale_az.js │ │ │ ├── angular-locale_bas-cm.js │ │ │ ├── angular-locale_bas.js │ │ │ ├── angular-locale_be-by.js │ │ │ ├── angular-locale_be.js │ │ │ ├── angular-locale_bem-zm.js │ │ │ ├── angular-locale_bem.js │ │ │ ├── angular-locale_bez-tz.js │ │ │ ├── angular-locale_bez.js │ │ │ ├── angular-locale_bg-bg.js │ │ │ ├── angular-locale_bg.js │ │ │ ├── angular-locale_bm-ml.js │ │ │ ├── angular-locale_bm.js │ │ │ ├── angular-locale_bn-bd.js │ │ │ ├── angular-locale_bn-in.js │ │ │ ├── angular-locale_bn.js │ │ │ ├── angular-locale_bo-cn.js │ │ │ ├── angular-locale_bo-in.js │ │ │ ├── angular-locale_bo.js │ │ │ ├── angular-locale_br-fr.js │ │ │ ├── angular-locale_br.js │ │ │ ├── angular-locale_brx-in.js │ │ │ ├── angular-locale_brx.js │ │ │ ├── angular-locale_bs-cyrl-ba.js │ │ │ ├── angular-locale_bs-cyrl.js │ │ │ ├── angular-locale_bs-latn-ba.js │ │ │ ├── angular-locale_bs-latn.js │ │ │ ├── angular-locale_bs.js │ │ │ ├── angular-locale_byn-er.js │ │ │ ├── angular-locale_byn.js │ │ │ ├── angular-locale_ca-ad.js │ │ │ ├── angular-locale_ca-es-valencia.js │ │ │ ├── angular-locale_ca-es.js │ │ │ ├── angular-locale_ca-fr.js │ │ │ ├── angular-locale_ca-it.js │ │ │ ├── angular-locale_ca.js │ │ │ ├── angular-locale_cgg-ug.js │ │ │ ├── angular-locale_cgg.js │ │ │ ├── angular-locale_chr-us.js │ │ │ ├── angular-locale_chr.js │ │ │ ├── angular-locale_ckb-arab-iq.js │ │ │ ├── angular-locale_ckb-arab-ir.js │ │ │ ├── angular-locale_ckb-arab.js │ │ │ ├── angular-locale_ckb-iq.js │ │ │ ├── angular-locale_ckb-ir.js │ │ │ ├── angular-locale_ckb-latn-iq.js │ │ │ ├── angular-locale_ckb-latn.js │ │ │ ├── angular-locale_ckb.js │ │ │ ├── angular-locale_cs-cz.js │ │ │ ├── angular-locale_cs.js │ │ │ ├── angular-locale_cy-gb.js │ │ │ ├── angular-locale_cy.js │ │ │ ├── angular-locale_da-dk.js │ │ │ ├── angular-locale_da-gl.js │ │ │ ├── angular-locale_da.js │ │ │ ├── angular-locale_dav-ke.js │ │ │ ├── angular-locale_dav.js │ │ │ ├── angular-locale_de-at.js │ │ │ ├── angular-locale_de-be.js │ │ │ ├── angular-locale_de-ch.js │ │ │ ├── angular-locale_de-de.js │ │ │ ├── angular-locale_de-li.js │ │ │ ├── angular-locale_de-lu.js │ │ │ ├── angular-locale_de.js │ │ │ ├── angular-locale_dje-ne.js │ │ │ ├── angular-locale_dje.js │ │ │ ├── angular-locale_dua-cm.js │ │ │ ├── angular-locale_dua.js │ │ │ ├── angular-locale_dyo-sn.js │ │ │ ├── angular-locale_dyo.js │ │ │ ├── angular-locale_dz-bt.js │ │ │ ├── angular-locale_dz.js │ │ │ ├── angular-locale_ebu-ke.js │ │ │ ├── angular-locale_ebu.js │ │ │ ├── angular-locale_ee-gh.js │ │ │ ├── angular-locale_ee-tg.js │ │ │ ├── angular-locale_ee.js │ │ │ ├── angular-locale_el-cy.js │ │ │ ├── angular-locale_el-gr.js │ │ │ ├── angular-locale_el.js │ │ │ ├── angular-locale_en-001.js │ │ │ ├── angular-locale_en-150.js │ │ │ ├── angular-locale_en-ag.js │ │ │ ├── angular-locale_en-ai.js │ │ │ ├── angular-locale_en-as.js │ │ │ ├── angular-locale_en-au.js │ │ │ ├── angular-locale_en-bb.js │ │ │ ├── angular-locale_en-be.js │ │ │ ├── angular-locale_en-bm.js │ │ │ ├── angular-locale_en-bs.js │ │ │ ├── angular-locale_en-bw.js │ │ │ ├── angular-locale_en-bz.js │ │ │ ├── angular-locale_en-ca.js │ │ │ ├── angular-locale_en-cc.js │ │ │ ├── angular-locale_en-ck.js │ │ │ ├── angular-locale_en-cm.js │ │ │ ├── angular-locale_en-cx.js │ │ │ ├── angular-locale_en-dg.js │ │ │ ├── angular-locale_en-dm.js │ │ │ ├── angular-locale_en-er.js │ │ │ ├── angular-locale_en-fj.js │ │ │ ├── angular-locale_en-fk.js │ │ │ ├── angular-locale_en-fm.js │ │ │ ├── angular-locale_en-gb.js │ │ │ ├── angular-locale_en-gd.js │ │ │ ├── angular-locale_en-gg.js │ │ │ ├── angular-locale_en-gh.js │ │ │ ├── angular-locale_en-gi.js │ │ │ ├── angular-locale_en-gm.js │ │ │ ├── angular-locale_en-gu.js │ │ │ ├── angular-locale_en-gy.js │ │ │ ├── angular-locale_en-hk.js │ │ │ ├── angular-locale_en-ie.js │ │ │ ├── angular-locale_en-im.js │ │ │ ├── angular-locale_en-in.js │ │ │ ├── angular-locale_en-io.js │ │ │ ├── angular-locale_en-iso.js │ │ │ ├── angular-locale_en-je.js │ │ │ ├── angular-locale_en-jm.js │ │ │ ├── angular-locale_en-ke.js │ │ │ ├── angular-locale_en-ki.js │ │ │ ├── angular-locale_en-kn.js │ │ │ ├── angular-locale_en-ky.js │ │ │ ├── angular-locale_en-lc.js │ │ │ ├── angular-locale_en-lr.js │ │ │ ├── angular-locale_en-ls.js │ │ │ ├── angular-locale_en-mg.js │ │ │ ├── angular-locale_en-mh.js │ │ │ ├── angular-locale_en-mo.js │ │ │ ├── angular-locale_en-mp.js │ │ │ ├── angular-locale_en-ms.js │ │ │ ├── angular-locale_en-mt.js │ │ │ ├── angular-locale_en-mu.js │ │ │ ├── angular-locale_en-mw.js │ │ │ ├── angular-locale_en-na.js │ │ │ ├── angular-locale_en-nf.js │ │ │ ├── angular-locale_en-ng.js │ │ │ ├── angular-locale_en-nr.js │ │ │ ├── angular-locale_en-nu.js │ │ │ ├── angular-locale_en-nz.js │ │ │ ├── angular-locale_en-pg.js │ │ │ ├── angular-locale_en-ph.js │ │ │ ├── angular-locale_en-pk.js │ │ │ ├── angular-locale_en-pn.js │ │ │ ├── angular-locale_en-pr.js │ │ │ ├── angular-locale_en-pw.js │ │ │ ├── angular-locale_en-rw.js │ │ │ ├── angular-locale_en-sb.js │ │ │ ├── angular-locale_en-sc.js │ │ │ ├── angular-locale_en-sd.js │ │ │ ├── angular-locale_en-sg.js │ │ │ ├── angular-locale_en-sh.js │ │ │ ├── angular-locale_en-sl.js │ │ │ ├── angular-locale_en-ss.js │ │ │ ├── angular-locale_en-sx.js │ │ │ ├── angular-locale_en-sz.js │ │ │ ├── angular-locale_en-tc.js │ │ │ ├── angular-locale_en-tk.js │ │ │ ├── angular-locale_en-to.js │ │ │ ├── angular-locale_en-tt.js │ │ │ ├── angular-locale_en-tv.js │ │ │ ├── angular-locale_en-tz.js │ │ │ ├── angular-locale_en-ug.js │ │ │ ├── angular-locale_en-um.js │ │ │ ├── angular-locale_en-us.js │ │ │ ├── angular-locale_en-vc.js │ │ │ ├── angular-locale_en-vg.js │ │ │ ├── angular-locale_en-vi.js │ │ │ ├── angular-locale_en-vu.js │ │ │ ├── angular-locale_en-ws.js │ │ │ ├── angular-locale_en-za.js │ │ │ ├── angular-locale_en-zm.js │ │ │ ├── angular-locale_en-zw.js │ │ │ ├── angular-locale_en.js │ │ │ ├── angular-locale_eo-001.js │ │ │ ├── angular-locale_eo.js │ │ │ ├── angular-locale_es-419.js │ │ │ ├── angular-locale_es-ar.js │ │ │ ├── angular-locale_es-bo.js │ │ │ ├── angular-locale_es-cl.js │ │ │ ├── angular-locale_es-co.js │ │ │ ├── angular-locale_es-cr.js │ │ │ ├── angular-locale_es-cu.js │ │ │ ├── angular-locale_es-do.js │ │ │ ├── angular-locale_es-ea.js │ │ │ ├── angular-locale_es-ec.js │ │ │ ├── angular-locale_es-es.js │ │ │ ├── angular-locale_es-gq.js │ │ │ ├── angular-locale_es-gt.js │ │ │ ├── angular-locale_es-hn.js │ │ │ ├── angular-locale_es-ic.js │ │ │ ├── angular-locale_es-mx.js │ │ │ ├── angular-locale_es-ni.js │ │ │ ├── angular-locale_es-pa.js │ │ │ ├── angular-locale_es-pe.js │ │ │ ├── angular-locale_es-ph.js │ │ │ ├── angular-locale_es-pr.js │ │ │ ├── angular-locale_es-py.js │ │ │ ├── angular-locale_es-sv.js │ │ │ ├── angular-locale_es-us.js │ │ │ ├── angular-locale_es-uy.js │ │ │ ├── angular-locale_es-ve.js │ │ │ ├── angular-locale_es.js │ │ │ ├── angular-locale_et-ee.js │ │ │ ├── angular-locale_et.js │ │ │ ├── angular-locale_eu-es.js │ │ │ ├── angular-locale_eu.js │ │ │ ├── angular-locale_ewo-cm.js │ │ │ ├── angular-locale_ewo.js │ │ │ ├── angular-locale_fa-af.js │ │ │ ├── angular-locale_fa-ir.js │ │ │ ├── angular-locale_fa.js │ │ │ ├── angular-locale_ff-cm.js │ │ │ ├── angular-locale_ff-gn.js │ │ │ ├── angular-locale_ff-mr.js │ │ │ ├── angular-locale_ff-sn.js │ │ │ ├── angular-locale_ff.js │ │ │ ├── angular-locale_fi-fi.js │ │ │ ├── angular-locale_fi.js │ │ │ ├── angular-locale_fil-ph.js │ │ │ ├── angular-locale_fil.js │ │ │ ├── angular-locale_fo-fo.js │ │ │ ├── angular-locale_fo.js │ │ │ ├── angular-locale_fr-be.js │ │ │ ├── angular-locale_fr-bf.js │ │ │ ├── angular-locale_fr-bi.js │ │ │ ├── angular-locale_fr-bj.js │ │ │ ├── angular-locale_fr-bl.js │ │ │ ├── angular-locale_fr-ca.js │ │ │ ├── angular-locale_fr-cd.js │ │ │ ├── angular-locale_fr-cf.js │ │ │ ├── angular-locale_fr-cg.js │ │ │ ├── angular-locale_fr-ch.js │ │ │ ├── angular-locale_fr-ci.js │ │ │ ├── angular-locale_fr-cm.js │ │ │ ├── angular-locale_fr-dj.js │ │ │ ├── angular-locale_fr-dz.js │ │ │ ├── angular-locale_fr-fr.js │ │ │ ├── angular-locale_fr-ga.js │ │ │ ├── angular-locale_fr-gf.js │ │ │ ├── angular-locale_fr-gn.js │ │ │ ├── angular-locale_fr-gp.js │ │ │ ├── angular-locale_fr-gq.js │ │ │ ├── angular-locale_fr-ht.js │ │ │ ├── angular-locale_fr-km.js │ │ │ ├── angular-locale_fr-lu.js │ │ │ ├── angular-locale_fr-ma.js │ │ │ ├── angular-locale_fr-mc.js │ │ │ ├── angular-locale_fr-mf.js │ │ │ ├── angular-locale_fr-mg.js │ │ │ ├── angular-locale_fr-ml.js │ │ │ ├── angular-locale_fr-mq.js │ │ │ ├── angular-locale_fr-mr.js │ │ │ ├── angular-locale_fr-mu.js │ │ │ ├── angular-locale_fr-nc.js │ │ │ ├── angular-locale_fr-ne.js │ │ │ ├── angular-locale_fr-pf.js │ │ │ ├── angular-locale_fr-pm.js │ │ │ ├── angular-locale_fr-re.js │ │ │ ├── angular-locale_fr-rw.js │ │ │ ├── angular-locale_fr-sc.js │ │ │ ├── angular-locale_fr-sn.js │ │ │ ├── angular-locale_fr-sy.js │ │ │ ├── angular-locale_fr-td.js │ │ │ ├── angular-locale_fr-tg.js │ │ │ ├── angular-locale_fr-tn.js │ │ │ ├── angular-locale_fr-vu.js │ │ │ ├── angular-locale_fr-wf.js │ │ │ ├── angular-locale_fr-yt.js │ │ │ ├── angular-locale_fr.js │ │ │ ├── angular-locale_fur-it.js │ │ │ ├── angular-locale_fur.js │ │ │ ├── angular-locale_fy-nl.js │ │ │ ├── angular-locale_fy.js │ │ │ ├── angular-locale_ga-ie.js │ │ │ ├── angular-locale_ga.js │ │ │ ├── angular-locale_gd-gb.js │ │ │ ├── angular-locale_gd.js │ │ │ ├── angular-locale_gl-es.js │ │ │ ├── angular-locale_gl.js │ │ │ ├── angular-locale_gsw-ch.js │ │ │ ├── angular-locale_gsw-li.js │ │ │ ├── angular-locale_gsw.js │ │ │ ├── angular-locale_gu-in.js │ │ │ ├── angular-locale_gu.js │ │ │ ├── angular-locale_guz-ke.js │ │ │ ├── angular-locale_guz.js │ │ │ ├── angular-locale_gv-im.js │ │ │ ├── angular-locale_gv.js │ │ │ ├── angular-locale_ha-latn-gh.js │ │ │ ├── angular-locale_ha-latn-ne.js │ │ │ ├── angular-locale_ha-latn-ng.js │ │ │ ├── angular-locale_ha-latn.js │ │ │ ├── angular-locale_ha.js │ │ │ ├── angular-locale_haw-us.js │ │ │ ├── angular-locale_haw.js │ │ │ ├── angular-locale_he-il.js │ │ │ ├── angular-locale_he.js │ │ │ ├── angular-locale_hi-in.js │ │ │ ├── angular-locale_hi.js │ │ │ ├── angular-locale_hr-ba.js │ │ │ ├── angular-locale_hr-hr.js │ │ │ ├── angular-locale_hr.js │ │ │ ├── angular-locale_hu-hu.js │ │ │ ├── angular-locale_hu.js │ │ │ ├── angular-locale_hy-am.js │ │ │ ├── angular-locale_hy.js │ │ │ ├── angular-locale_ia-fr.js │ │ │ ├── angular-locale_ia.js │ │ │ ├── angular-locale_id-id.js │ │ │ ├── angular-locale_id.js │ │ │ ├── angular-locale_ig-ng.js │ │ │ ├── angular-locale_ig.js │ │ │ ├── angular-locale_ii-cn.js │ │ │ ├── angular-locale_ii.js │ │ │ ├── angular-locale_in.js │ │ │ ├── angular-locale_is-is.js │ │ │ ├── angular-locale_is.js │ │ │ ├── angular-locale_it-ch.js │ │ │ ├── angular-locale_it-it.js │ │ │ ├── angular-locale_it-sm.js │ │ │ ├── angular-locale_it.js │ │ │ ├── angular-locale_iw.js │ │ │ ├── angular-locale_ja-jp.js │ │ │ ├── angular-locale_ja.js │ │ │ ├── angular-locale_jgo-cm.js │ │ │ ├── angular-locale_jgo.js │ │ │ ├── angular-locale_jmc-tz.js │ │ │ ├── angular-locale_jmc.js │ │ │ ├── angular-locale_ka-ge.js │ │ │ ├── angular-locale_ka.js │ │ │ ├── angular-locale_kab-dz.js │ │ │ ├── angular-locale_kab.js │ │ │ ├── angular-locale_kam-ke.js │ │ │ ├── angular-locale_kam.js │ │ │ ├── angular-locale_kde-tz.js │ │ │ ├── angular-locale_kde.js │ │ │ ├── angular-locale_kea-cv.js │ │ │ ├── angular-locale_kea.js │ │ │ ├── angular-locale_khq-ml.js │ │ │ ├── angular-locale_khq.js │ │ │ ├── angular-locale_ki-ke.js │ │ │ ├── angular-locale_ki.js │ │ │ ├── angular-locale_kk-cyrl-kz.js │ │ │ ├── angular-locale_kk-cyrl.js │ │ │ ├── angular-locale_kk.js │ │ │ ├── angular-locale_kkj-cm.js │ │ │ ├── angular-locale_kkj.js │ │ │ ├── angular-locale_kl-gl.js │ │ │ ├── angular-locale_kl.js │ │ │ ├── angular-locale_kln-ke.js │ │ │ ├── angular-locale_kln.js │ │ │ ├── angular-locale_km-kh.js │ │ │ ├── angular-locale_km.js │ │ │ ├── angular-locale_kn-in.js │ │ │ ├── angular-locale_kn.js │ │ │ ├── angular-locale_ko-kp.js │ │ │ ├── angular-locale_ko-kr.js │ │ │ ├── angular-locale_ko.js │ │ │ ├── angular-locale_kok-in.js │ │ │ ├── angular-locale_kok.js │ │ │ ├── angular-locale_ks-arab-in.js │ │ │ ├── angular-locale_ks-arab.js │ │ │ ├── angular-locale_ks.js │ │ │ ├── angular-locale_ksb-tz.js │ │ │ ├── angular-locale_ksb.js │ │ │ ├── angular-locale_ksf-cm.js │ │ │ ├── angular-locale_ksf.js │ │ │ ├── angular-locale_ksh-de.js │ │ │ ├── angular-locale_ksh.js │ │ │ ├── angular-locale_kw-gb.js │ │ │ ├── angular-locale_kw.js │ │ │ ├── angular-locale_ky-cyrl-kg.js │ │ │ ├── angular-locale_ky-cyrl.js │ │ │ ├── angular-locale_ky.js │ │ │ ├── angular-locale_lag-tz.js │ │ │ ├── angular-locale_lag.js │ │ │ ├── angular-locale_lg-ug.js │ │ │ ├── angular-locale_lg.js │ │ │ ├── angular-locale_lkt-us.js │ │ │ ├── angular-locale_lkt.js │ │ │ ├── angular-locale_ln-ao.js │ │ │ ├── angular-locale_ln-cd.js │ │ │ ├── angular-locale_ln-cf.js │ │ │ ├── angular-locale_ln-cg.js │ │ │ ├── angular-locale_ln.js │ │ │ ├── angular-locale_lo-la.js │ │ │ ├── angular-locale_lo.js │ │ │ ├── angular-locale_lt-lt.js │ │ │ ├── angular-locale_lt.js │ │ │ ├── angular-locale_lu-cd.js │ │ │ ├── angular-locale_lu.js │ │ │ ├── angular-locale_luo-ke.js │ │ │ ├── angular-locale_luo.js │ │ │ ├── angular-locale_luy-ke.js │ │ │ ├── angular-locale_luy.js │ │ │ ├── angular-locale_lv-lv.js │ │ │ ├── angular-locale_lv.js │ │ │ ├── angular-locale_mas-ke.js │ │ │ ├── angular-locale_mas-tz.js │ │ │ ├── angular-locale_mas.js │ │ │ ├── angular-locale_mer-ke.js │ │ │ ├── angular-locale_mer.js │ │ │ ├── angular-locale_mfe-mu.js │ │ │ ├── angular-locale_mfe.js │ │ │ ├── angular-locale_mg-mg.js │ │ │ ├── angular-locale_mg.js │ │ │ ├── angular-locale_mgh-mz.js │ │ │ ├── angular-locale_mgh.js │ │ │ ├── angular-locale_mgo-cm.js │ │ │ ├── angular-locale_mgo.js │ │ │ ├── angular-locale_mk-mk.js │ │ │ ├── angular-locale_mk.js │ │ │ ├── angular-locale_ml-in.js │ │ │ ├── angular-locale_ml.js │ │ │ ├── angular-locale_mn-cyrl-mn.js │ │ │ ├── angular-locale_mn-cyrl.js │ │ │ ├── angular-locale_mn.js │ │ │ ├── angular-locale_mr-in.js │ │ │ ├── angular-locale_mr.js │ │ │ ├── angular-locale_ms-latn-bn.js │ │ │ ├── angular-locale_ms-latn-my.js │ │ │ ├── angular-locale_ms-latn-sg.js │ │ │ ├── angular-locale_ms-latn.js │ │ │ ├── angular-locale_ms.js │ │ │ ├── angular-locale_mt-mt.js │ │ │ ├── angular-locale_mt.js │ │ │ ├── angular-locale_mua-cm.js │ │ │ ├── angular-locale_mua.js │ │ │ ├── angular-locale_my-mm.js │ │ │ ├── angular-locale_my.js │ │ │ ├── angular-locale_naq-na.js │ │ │ ├── angular-locale_naq.js │ │ │ ├── angular-locale_nb-no.js │ │ │ ├── angular-locale_nb-sj.js │ │ │ ├── angular-locale_nb.js │ │ │ ├── angular-locale_nd-zw.js │ │ │ ├── angular-locale_nd.js │ │ │ ├── angular-locale_ne-in.js │ │ │ ├── angular-locale_ne-np.js │ │ │ ├── angular-locale_ne.js │ │ │ ├── angular-locale_nl-aw.js │ │ │ ├── angular-locale_nl-be.js │ │ │ ├── angular-locale_nl-bq.js │ │ │ ├── angular-locale_nl-cw.js │ │ │ ├── angular-locale_nl-nl.js │ │ │ ├── angular-locale_nl-sr.js │ │ │ ├── angular-locale_nl-sx.js │ │ │ ├── angular-locale_nl.js │ │ │ ├── angular-locale_nmg-cm.js │ │ │ ├── angular-locale_nmg.js │ │ │ ├── angular-locale_nn-no.js │ │ │ ├── angular-locale_nn.js │ │ │ ├── angular-locale_nnh-cm.js │ │ │ ├── angular-locale_nnh.js │ │ │ ├── angular-locale_no-no.js │ │ │ ├── angular-locale_no.js │ │ │ ├── angular-locale_nr-za.js │ │ │ ├── angular-locale_nr.js │ │ │ ├── angular-locale_nso-za.js │ │ │ ├── angular-locale_nso.js │ │ │ ├── angular-locale_nus-sd.js │ │ │ ├── angular-locale_nus.js │ │ │ ├── angular-locale_nyn-ug.js │ │ │ ├── angular-locale_nyn.js │ │ │ ├── angular-locale_om-et.js │ │ │ ├── angular-locale_om-ke.js │ │ │ ├── angular-locale_om.js │ │ │ ├── angular-locale_or-in.js │ │ │ ├── angular-locale_or.js │ │ │ ├── angular-locale_os-ge.js │ │ │ ├── angular-locale_os-ru.js │ │ │ ├── angular-locale_os.js │ │ │ ├── angular-locale_pa-arab-pk.js │ │ │ ├── angular-locale_pa-arab.js │ │ │ ├── angular-locale_pa-guru-in.js │ │ │ ├── angular-locale_pa-guru.js │ │ │ ├── angular-locale_pa.js │ │ │ ├── angular-locale_pl-pl.js │ │ │ ├── angular-locale_pl.js │ │ │ ├── angular-locale_ps-af.js │ │ │ ├── angular-locale_ps.js │ │ │ ├── angular-locale_pt-ao.js │ │ │ ├── angular-locale_pt-br.js │ │ │ ├── angular-locale_pt-cv.js │ │ │ ├── angular-locale_pt-gw.js │ │ │ ├── angular-locale_pt-mo.js │ │ │ ├── angular-locale_pt-mz.js │ │ │ ├── angular-locale_pt-pt.js │ │ │ ├── angular-locale_pt-st.js │ │ │ ├── angular-locale_pt-tl.js │ │ │ ├── angular-locale_pt.js │ │ │ ├── angular-locale_rm-ch.js │ │ │ ├── angular-locale_rm.js │ │ │ ├── angular-locale_rn-bi.js │ │ │ ├── angular-locale_rn.js │ │ │ ├── angular-locale_ro-md.js │ │ │ ├── angular-locale_ro-ro.js │ │ │ ├── angular-locale_ro.js │ │ │ ├── angular-locale_rof-tz.js │ │ │ ├── angular-locale_rof.js │ │ │ ├── angular-locale_ru-by.js │ │ │ ├── angular-locale_ru-kg.js │ │ │ ├── angular-locale_ru-kz.js │ │ │ ├── angular-locale_ru-md.js │ │ │ ├── angular-locale_ru-ru.js │ │ │ ├── angular-locale_ru-ua.js │ │ │ ├── angular-locale_ru.js │ │ │ ├── angular-locale_rw-rw.js │ │ │ ├── angular-locale_rw.js │ │ │ ├── angular-locale_rwk-tz.js │ │ │ ├── angular-locale_rwk.js │ │ │ ├── angular-locale_sah-ru.js │ │ │ ├── angular-locale_sah.js │ │ │ ├── angular-locale_saq-ke.js │ │ │ ├── angular-locale_saq.js │ │ │ ├── angular-locale_sbp-tz.js │ │ │ ├── angular-locale_sbp.js │ │ │ ├── angular-locale_se-fi.js │ │ │ ├── angular-locale_se-no.js │ │ │ ├── angular-locale_se.js │ │ │ ├── angular-locale_seh-mz.js │ │ │ ├── angular-locale_seh.js │ │ │ ├── angular-locale_ses-ml.js │ │ │ ├── angular-locale_ses.js │ │ │ ├── angular-locale_sg-cf.js │ │ │ ├── angular-locale_sg.js │ │ │ ├── angular-locale_shi-latn-ma.js │ │ │ ├── angular-locale_shi-latn.js │ │ │ ├── angular-locale_shi-tfng-ma.js │ │ │ ├── angular-locale_shi-tfng.js │ │ │ ├── angular-locale_shi.js │ │ │ ├── angular-locale_si-lk.js │ │ │ ├── angular-locale_si.js │ │ │ ├── angular-locale_sk-sk.js │ │ │ ├── angular-locale_sk.js │ │ │ ├── angular-locale_sl-si.js │ │ │ ├── angular-locale_sl.js │ │ │ ├── angular-locale_sn-zw.js │ │ │ ├── angular-locale_sn.js │ │ │ ├── angular-locale_so-dj.js │ │ │ ├── angular-locale_so-et.js │ │ │ ├── angular-locale_so-ke.js │ │ │ ├── angular-locale_so-so.js │ │ │ ├── angular-locale_so.js │ │ │ ├── angular-locale_sq-al.js │ │ │ ├── angular-locale_sq-mk.js │ │ │ ├── angular-locale_sq-xk.js │ │ │ ├── angular-locale_sq.js │ │ │ ├── angular-locale_sr-cyrl-ba.js │ │ │ ├── angular-locale_sr-cyrl-me.js │ │ │ ├── angular-locale_sr-cyrl-rs.js │ │ │ ├── angular-locale_sr-cyrl-xk.js │ │ │ ├── angular-locale_sr-cyrl.js │ │ │ ├── angular-locale_sr-latn-ba.js │ │ │ ├── angular-locale_sr-latn-me.js │ │ │ ├── angular-locale_sr-latn-rs.js │ │ │ ├── angular-locale_sr-latn-xk.js │ │ │ ├── angular-locale_sr-latn.js │ │ │ ├── angular-locale_sr.js │ │ │ ├── angular-locale_ss-sz.js │ │ │ ├── angular-locale_ss-za.js │ │ │ ├── angular-locale_ss.js │ │ │ ├── angular-locale_ssy-er.js │ │ │ ├── angular-locale_ssy.js │ │ │ ├── angular-locale_st-ls.js │ │ │ ├── angular-locale_st-za.js │ │ │ ├── angular-locale_st.js │ │ │ ├── angular-locale_sv-ax.js │ │ │ ├── angular-locale_sv-fi.js │ │ │ ├── angular-locale_sv-se.js │ │ │ ├── angular-locale_sv.js │ │ │ ├── angular-locale_sw-ke.js │ │ │ ├── angular-locale_sw-tz.js │ │ │ ├── angular-locale_sw-ug.js │ │ │ ├── angular-locale_sw.js │ │ │ ├── angular-locale_swc-cd.js │ │ │ ├── angular-locale_swc.js │ │ │ ├── angular-locale_ta-in.js │ │ │ ├── angular-locale_ta-lk.js │ │ │ ├── angular-locale_ta-my.js │ │ │ ├── angular-locale_ta-sg.js │ │ │ ├── angular-locale_ta.js │ │ │ ├── angular-locale_te-in.js │ │ │ ├── angular-locale_te.js │ │ │ ├── angular-locale_teo-ke.js │ │ │ ├── angular-locale_teo-ug.js │ │ │ ├── angular-locale_teo.js │ │ │ ├── angular-locale_tg-cyrl-tj.js │ │ │ ├── angular-locale_tg-cyrl.js │ │ │ ├── angular-locale_tg.js │ │ │ ├── angular-locale_th-th.js │ │ │ ├── angular-locale_th.js │ │ │ ├── angular-locale_ti-er.js │ │ │ ├── angular-locale_ti-et.js │ │ │ ├── angular-locale_ti.js │ │ │ ├── angular-locale_tig-er.js │ │ │ ├── angular-locale_tig.js │ │ │ ├── angular-locale_tl.js │ │ │ ├── angular-locale_tn-bw.js │ │ │ ├── angular-locale_tn-za.js │ │ │ ├── angular-locale_tn.js │ │ │ ├── angular-locale_to-to.js │ │ │ ├── angular-locale_to.js │ │ │ ├── angular-locale_tr-cy.js │ │ │ ├── angular-locale_tr-tr.js │ │ │ ├── angular-locale_tr.js │ │ │ ├── angular-locale_ts-za.js │ │ │ ├── angular-locale_ts.js │ │ │ ├── angular-locale_twq-ne.js │ │ │ ├── angular-locale_twq.js │ │ │ ├── angular-locale_tzm-latn-ma.js │ │ │ ├── angular-locale_tzm-latn.js │ │ │ ├── angular-locale_tzm.js │ │ │ ├── angular-locale_ug-arab-cn.js │ │ │ ├── angular-locale_ug-arab.js │ │ │ ├── angular-locale_ug.js │ │ │ ├── angular-locale_uk-ua.js │ │ │ ├── angular-locale_uk.js │ │ │ ├── angular-locale_ur-in.js │ │ │ ├── angular-locale_ur-pk.js │ │ │ ├── angular-locale_ur.js │ │ │ ├── angular-locale_uz-arab-af.js │ │ │ ├── angular-locale_uz-arab.js │ │ │ ├── angular-locale_uz-cyrl-uz.js │ │ │ ├── angular-locale_uz-cyrl.js │ │ │ ├── angular-locale_uz-latn-uz.js │ │ │ ├── angular-locale_uz-latn.js │ │ │ ├── angular-locale_uz.js │ │ │ ├── angular-locale_vai-latn-lr.js │ │ │ ├── angular-locale_vai-latn.js │ │ │ ├── angular-locale_vai-vaii-lr.js │ │ │ ├── angular-locale_vai-vaii.js │ │ │ ├── angular-locale_vai.js │ │ │ ├── angular-locale_ve-za.js │ │ │ ├── angular-locale_ve.js │ │ │ ├── angular-locale_vi-vn.js │ │ │ ├── angular-locale_vi.js │ │ │ ├── angular-locale_vo-001.js │ │ │ ├── angular-locale_vo.js │ │ │ ├── angular-locale_vun-tz.js │ │ │ ├── angular-locale_vun.js │ │ │ ├── angular-locale_wae-ch.js │ │ │ ├── angular-locale_wae.js │ │ │ ├── angular-locale_wal-et.js │ │ │ ├── angular-locale_wal.js │ │ │ ├── angular-locale_xh-za.js │ │ │ ├── angular-locale_xh.js │ │ │ ├── angular-locale_xog-ug.js │ │ │ ├── angular-locale_xog.js │ │ │ ├── angular-locale_yav-cm.js │ │ │ ├── angular-locale_yav.js │ │ │ ├── angular-locale_yo-bj.js │ │ │ ├── angular-locale_yo-ng.js │ │ │ ├── angular-locale_yo.js │ │ │ ├── angular-locale_zgh-ma.js │ │ │ ├── angular-locale_zgh.js │ │ │ ├── angular-locale_zh-cn.js │ │ │ ├── angular-locale_zh-hans-cn.js │ │ │ ├── angular-locale_zh-hans-hk.js │ │ │ ├── angular-locale_zh-hans-mo.js │ │ │ ├── angular-locale_zh-hans-sg.js │ │ │ ├── angular-locale_zh-hans.js │ │ │ ├── angular-locale_zh-hant-hk.js │ │ │ ├── angular-locale_zh-hant-mo.js │ │ │ ├── angular-locale_zh-hant-tw.js │ │ │ ├── angular-locale_zh-hant.js │ │ │ ├── angular-locale_zh-hk.js │ │ │ ├── angular-locale_zh-tw.js │ │ │ ├── angular-locale_zh.js │ │ │ ├── angular-locale_zu-za.js │ │ │ └── angular-locale_zu.js │ │ │ ├── version.json │ │ │ └── version.txt │ ├── app │ │ ├── app.js │ │ └── demographics.js │ ├── bootflat │ │ ├── css │ │ │ ├── bootflat.css │ │ │ ├── bootflat.css.map │ │ │ └── bootflat.min.css │ │ ├── img │ │ │ └── check_flat │ │ │ │ ├── default.png │ │ │ │ └── default.psd │ │ ├── js │ │ │ ├── icheck.min.js │ │ │ ├── jquery.fs.selecter.js │ │ │ ├── jquery.fs.selecter.min.js │ │ │ └── jquery.fs.stepper.min.js │ │ └── scss │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── bootflat.scss │ │ │ └── bootflat │ │ │ ├── _accordion.scss │ │ │ ├── _alert.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button.scss │ │ │ ├── _button_group.scss │ │ │ ├── _calendar.scss │ │ │ ├── _checkbox_radio.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _footer.scss │ │ │ ├── _form.scss │ │ │ ├── _global.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _label_badge.scss │ │ │ ├── _list.scss │ │ │ ├── _media_list.scss │ │ │ ├── _modal.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panel.scss │ │ │ ├── _pill.scss │ │ │ ├── _popover.scss │ │ │ ├── _pricing.scss │ │ │ ├── _progress.scss │ │ │ ├── _selecter.scss │ │ │ ├── _stepper.scss │ │ │ ├── _tab.scss │ │ │ ├── _thumbnail.scss │ │ │ ├── _timeline.scss │ │ │ ├── _toggle.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _typography.scss │ │ │ └── _well.scss │ ├── css │ │ ├── animate.css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.min.css │ │ └── style.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── index.html │ ├── js │ │ ├── bootstrap-growl.min.js │ │ ├── bootstrap.min.js │ │ ├── datetimepicker-tpls-0.11.js │ │ ├── jquery-2.1.1.min.js │ │ ├── jquery-2.1.1.min.map │ │ ├── tmhDynamicLocale.js │ │ └── ui-bootstrap-custom-tpls-0.10.0.js │ └── thinkehr │ │ └── f4 │ │ ├── css │ │ ├── ehr-form-default.css │ │ ├── ehr-form-layout.css │ │ └── ehr-form.css │ │ ├── templates │ │ ├── ehr-boolean.html │ │ ├── ehr-coded-text-combo.html │ │ ├── ehr-coded-text-radio.html │ │ ├── ehr-coded-text.html │ │ ├── ehr-container.html │ │ ├── ehr-date-time.html │ │ ├── ehr-date.html │ │ ├── ehr-form.html │ │ ├── ehr-label.html │ │ ├── ehr-proportion.html │ │ ├── ehr-quantity.html │ │ ├── ehr-recursive-element.html │ │ ├── ehr-text-area.html │ │ ├── ehr-text-field.html │ │ ├── ehr-text.html │ │ ├── ehr-time.html │ │ └── ehr-unknown.html │ │ ├── thinkehr-f4-model.js │ │ └── thinkehr-f4-view-angular.js ├── formvitals │ ├── bootflat │ │ ├── css │ │ │ ├── bootflat.css │ │ │ ├── bootflat.css.map │ │ │ └── bootflat.min.css │ │ ├── img │ │ │ └── check_flat │ │ │ │ ├── default.png │ │ │ │ └── default.psd │ │ ├── js │ │ │ ├── icheck.min.js │ │ │ ├── jquery.fs.selecter.min.js │ │ │ └── jquery.fs.stepper.min.js │ │ └── scss │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── bootflat.scss │ │ │ └── bootflat │ │ │ ├── _accordion.scss │ │ │ ├── _alert.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button.scss │ │ │ ├── _button_group.scss │ │ │ ├── _calendar.scss │ │ │ ├── _checkbox_radio.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _footer.scss │ │ │ ├── _form.scss │ │ │ ├── _global.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _label_badge.scss │ │ │ ├── _list.scss │ │ │ ├── _media_list.scss │ │ │ ├── _modal.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panel.scss │ │ │ ├── _pill.scss │ │ │ ├── _popover.scss │ │ │ ├── _pricing.scss │ │ │ ├── _progress.scss │ │ │ ├── _selecter.scss │ │ │ ├── _stepper.scss │ │ │ ├── _tab.scss │ │ │ ├── _thumbnail.scss │ │ │ ├── _timeline.scss │ │ │ ├── _toggle.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _typography.scss │ │ │ └── _well.scss │ ├── css │ │ ├── animate.css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.css │ │ └── style.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── index.html │ └── js │ │ ├── app.js │ │ ├── bootstrap-growl.min.js │ │ ├── bootstrap.min.js │ │ ├── jquery-2.1.1.min.js │ │ ├── jquery-2.1.1.min.map │ │ ├── jquery.spin.js │ │ └── spin.min.js ├── phr │ ├── bootflat │ │ ├── css │ │ │ ├── bootflat.css │ │ │ ├── bootflat.css.map │ │ │ └── bootflat.min.css │ │ ├── img │ │ │ └── check_flat │ │ │ │ ├── default.png │ │ │ │ └── default.psd │ │ ├── js │ │ │ └── icheck.min.js │ │ └── scss │ │ │ ├── bootflat.scss │ │ │ └── bootflat │ │ │ ├── _accordion.scss │ │ │ ├── _alert.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button.scss │ │ │ ├── _button_group.scss │ │ │ ├── _checkbox_radio.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _footer.scss │ │ │ ├── _form.scss │ │ │ ├── _global.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _label_badge.scss │ │ │ ├── _list.scss │ │ │ ├── _media_list.scss │ │ │ ├── _modal.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panel.scss │ │ │ ├── _pill.scss │ │ │ ├── _popover.scss │ │ │ ├── _progress.scss │ │ │ ├── _tab.scss │ │ │ ├── _thumbnail.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _typography.scss │ │ │ └── _well.scss │ ├── css │ │ ├── font-awesome.css │ │ ├── morris.css │ │ └── style.css │ ├── fonts │ │ ├── fontawesome │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ ├── agrafo.png │ │ ├── back-to-top.png │ │ ├── binder-ring.png │ │ ├── body-blank-female.png │ │ ├── body-blank-male.png │ │ ├── body-blank-small.png │ │ ├── body-placeholder.png │ │ ├── doctor.png │ │ ├── doctor2.png │ │ ├── female.png │ │ ├── patient1.png │ │ └── user.png │ ├── index.html │ └── js │ │ ├── app.js │ │ ├── handlebars-v1.3.0.js │ │ ├── morris.min.js │ │ └── timeline.js ├── social │ ├── bootflat │ │ ├── css │ │ │ ├── bootflat.css │ │ │ ├── bootflat.css.map │ │ │ └── bootflat.min.css │ │ ├── img │ │ │ └── check_flat │ │ │ │ ├── default.png │ │ │ │ └── default.psd │ │ ├── js │ │ │ └── icheck.min.js │ │ └── scss │ │ │ ├── bootflat.scss │ │ │ └── bootflat │ │ │ ├── _accordion.scss │ │ │ ├── _alert.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button.scss │ │ │ ├── _button_group.scss │ │ │ ├── _checkbox_radio.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _footer.scss │ │ │ ├── _form.scss │ │ │ ├── _global.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _label_badge.scss │ │ │ ├── _list.scss │ │ │ ├── _media_list.scss │ │ │ ├── _modal.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panel.scss │ │ │ ├── _pill.scss │ │ │ ├── _popover.scss │ │ │ ├── _progress.scss │ │ │ ├── _tab.scss │ │ │ ├── _thumbnail.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _typography.scss │ │ │ └── _well.scss │ ├── css │ │ ├── basic.css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.css │ │ └── social.css │ ├── fonts │ │ ├── fontawesome │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ ├── back-to-top.png │ │ ├── doctor2.png │ │ ├── female.png │ │ ├── file-icon.png │ │ ├── knee.jpg │ │ ├── spritemap.png │ │ └── spritemap@2x.png │ ├── index.html │ └── js │ │ ├── bootstrap.min.js │ │ ├── dropzone.js │ │ ├── handlebars-v1.3.0.js │ │ ├── html5shiv.js │ │ ├── jquery-1.11.0.min.js │ │ ├── jquery-1.11.0.min.map │ │ ├── jquery-ui-1.10.4.min.js │ │ ├── jquery.timeago.js │ │ ├── modernizr.custom.js │ │ ├── respond.min.js │ │ ├── social.js │ │ └── xdate.js ├── stethoscope │ ├── angular │ │ └── 1.3.2 │ │ │ ├── angular-animate.js │ │ │ ├── angular-animate.min.js │ │ │ ├── angular-animate.min.js.map │ │ │ ├── angular-aria.js │ │ │ ├── angular-aria.min.js │ │ │ ├── angular-aria.min.js.map │ │ │ ├── angular-cookies.js │ │ │ ├── angular-cookies.min.js │ │ │ ├── angular-cookies.min.js.map │ │ │ ├── angular-csp.css │ │ │ ├── angular-loader.js │ │ │ ├── angular-loader.min.js │ │ │ ├── angular-loader.min.js.map │ │ │ ├── angular-messages.js │ │ │ ├── angular-messages.min.js │ │ │ ├── angular-messages.min.js.map │ │ │ ├── angular-mocks.js │ │ │ ├── angular-resource.js │ │ │ ├── angular-resource.min.js │ │ │ ├── angular-resource.min.js.map │ │ │ ├── angular-route.js │ │ │ ├── angular-route.min.js │ │ │ ├── angular-route.min.js.map │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-sanitize.min.js │ │ │ ├── angular-sanitize.min.js.map │ │ │ ├── angular-scenario.js │ │ │ ├── angular-touch.js │ │ │ ├── angular-touch.min.js │ │ │ ├── angular-touch.min.js.map │ │ │ ├── angular.js │ │ │ ├── angular.min.js │ │ │ ├── angular.min.js.map │ │ │ ├── errors.json │ │ │ ├── i18n │ │ │ ├── angular-locale_aa-dj.js │ │ │ ├── angular-locale_aa-er.js │ │ │ ├── angular-locale_aa-et.js │ │ │ ├── angular-locale_aa.js │ │ │ ├── angular-locale_af-na.js │ │ │ ├── angular-locale_af-za.js │ │ │ ├── angular-locale_af.js │ │ │ ├── angular-locale_agq-cm.js │ │ │ ├── angular-locale_agq.js │ │ │ ├── angular-locale_ak-gh.js │ │ │ ├── angular-locale_ak.js │ │ │ ├── angular-locale_am-et.js │ │ │ ├── angular-locale_am.js │ │ │ ├── angular-locale_ar-001.js │ │ │ ├── angular-locale_ar-ae.js │ │ │ ├── angular-locale_ar-bh.js │ │ │ ├── angular-locale_ar-dj.js │ │ │ ├── angular-locale_ar-dz.js │ │ │ ├── angular-locale_ar-eg.js │ │ │ ├── angular-locale_ar-eh.js │ │ │ ├── angular-locale_ar-er.js │ │ │ ├── angular-locale_ar-il.js │ │ │ ├── angular-locale_ar-iq.js │ │ │ ├── angular-locale_ar-jo.js │ │ │ ├── angular-locale_ar-km.js │ │ │ ├── angular-locale_ar-kw.js │ │ │ ├── angular-locale_ar-lb.js │ │ │ ├── angular-locale_ar-ly.js │ │ │ ├── angular-locale_ar-ma.js │ │ │ ├── angular-locale_ar-mr.js │ │ │ ├── angular-locale_ar-om.js │ │ │ ├── angular-locale_ar-ps.js │ │ │ ├── angular-locale_ar-qa.js │ │ │ ├── angular-locale_ar-sa.js │ │ │ ├── angular-locale_ar-sd.js │ │ │ ├── angular-locale_ar-so.js │ │ │ ├── angular-locale_ar-ss.js │ │ │ ├── angular-locale_ar-sy.js │ │ │ ├── angular-locale_ar-td.js │ │ │ ├── angular-locale_ar-tn.js │ │ │ ├── angular-locale_ar-ye.js │ │ │ ├── angular-locale_ar.js │ │ │ ├── angular-locale_as-in.js │ │ │ ├── angular-locale_as.js │ │ │ ├── angular-locale_asa-tz.js │ │ │ ├── angular-locale_asa.js │ │ │ ├── angular-locale_ast-es.js │ │ │ ├── angular-locale_ast.js │ │ │ ├── angular-locale_az-cyrl-az.js │ │ │ ├── angular-locale_az-cyrl.js │ │ │ ├── angular-locale_az-latn-az.js │ │ │ ├── angular-locale_az-latn.js │ │ │ ├── angular-locale_az.js │ │ │ ├── angular-locale_bas-cm.js │ │ │ ├── angular-locale_bas.js │ │ │ ├── angular-locale_be-by.js │ │ │ ├── angular-locale_be.js │ │ │ ├── angular-locale_bem-zm.js │ │ │ ├── angular-locale_bem.js │ │ │ ├── angular-locale_bez-tz.js │ │ │ ├── angular-locale_bez.js │ │ │ ├── angular-locale_bg-bg.js │ │ │ ├── angular-locale_bg.js │ │ │ ├── angular-locale_bm-ml.js │ │ │ ├── angular-locale_bm.js │ │ │ ├── angular-locale_bn-bd.js │ │ │ ├── angular-locale_bn-in.js │ │ │ ├── angular-locale_bn.js │ │ │ ├── angular-locale_bo-cn.js │ │ │ ├── angular-locale_bo-in.js │ │ │ ├── angular-locale_bo.js │ │ │ ├── angular-locale_br-fr.js │ │ │ ├── angular-locale_br.js │ │ │ ├── angular-locale_brx-in.js │ │ │ ├── angular-locale_brx.js │ │ │ ├── angular-locale_bs-cyrl-ba.js │ │ │ ├── angular-locale_bs-cyrl.js │ │ │ ├── angular-locale_bs-latn-ba.js │ │ │ ├── angular-locale_bs-latn.js │ │ │ ├── angular-locale_bs.js │ │ │ ├── angular-locale_byn-er.js │ │ │ ├── angular-locale_byn.js │ │ │ ├── angular-locale_ca-ad.js │ │ │ ├── angular-locale_ca-es-valencia.js │ │ │ ├── angular-locale_ca-es.js │ │ │ ├── angular-locale_ca-fr.js │ │ │ ├── angular-locale_ca-it.js │ │ │ ├── angular-locale_ca.js │ │ │ ├── angular-locale_cgg-ug.js │ │ │ ├── angular-locale_cgg.js │ │ │ ├── angular-locale_chr-us.js │ │ │ ├── angular-locale_chr.js │ │ │ ├── angular-locale_ckb-arab-iq.js │ │ │ ├── angular-locale_ckb-arab-ir.js │ │ │ ├── angular-locale_ckb-arab.js │ │ │ ├── angular-locale_ckb-iq.js │ │ │ ├── angular-locale_ckb-ir.js │ │ │ ├── angular-locale_ckb-latn-iq.js │ │ │ ├── angular-locale_ckb-latn.js │ │ │ ├── angular-locale_ckb.js │ │ │ ├── angular-locale_cs-cz.js │ │ │ ├── angular-locale_cs.js │ │ │ ├── angular-locale_cy-gb.js │ │ │ ├── angular-locale_cy.js │ │ │ ├── angular-locale_da-dk.js │ │ │ ├── angular-locale_da-gl.js │ │ │ ├── angular-locale_da.js │ │ │ ├── angular-locale_dav-ke.js │ │ │ ├── angular-locale_dav.js │ │ │ ├── angular-locale_de-at.js │ │ │ ├── angular-locale_de-be.js │ │ │ ├── angular-locale_de-ch.js │ │ │ ├── angular-locale_de-de.js │ │ │ ├── angular-locale_de-li.js │ │ │ ├── angular-locale_de-lu.js │ │ │ ├── angular-locale_de.js │ │ │ ├── angular-locale_dje-ne.js │ │ │ ├── angular-locale_dje.js │ │ │ ├── angular-locale_dua-cm.js │ │ │ ├── angular-locale_dua.js │ │ │ ├── angular-locale_dyo-sn.js │ │ │ ├── angular-locale_dyo.js │ │ │ ├── angular-locale_dz-bt.js │ │ │ ├── angular-locale_dz.js │ │ │ ├── angular-locale_ebu-ke.js │ │ │ ├── angular-locale_ebu.js │ │ │ ├── angular-locale_ee-gh.js │ │ │ ├── angular-locale_ee-tg.js │ │ │ ├── angular-locale_ee.js │ │ │ ├── angular-locale_el-cy.js │ │ │ ├── angular-locale_el-gr.js │ │ │ ├── angular-locale_el.js │ │ │ ├── angular-locale_en-001.js │ │ │ ├── angular-locale_en-150.js │ │ │ ├── angular-locale_en-ag.js │ │ │ ├── angular-locale_en-ai.js │ │ │ ├── angular-locale_en-as.js │ │ │ ├── angular-locale_en-au.js │ │ │ ├── angular-locale_en-bb.js │ │ │ ├── angular-locale_en-be.js │ │ │ ├── angular-locale_en-bm.js │ │ │ ├── angular-locale_en-bs.js │ │ │ ├── angular-locale_en-bw.js │ │ │ ├── angular-locale_en-bz.js │ │ │ ├── angular-locale_en-ca.js │ │ │ ├── angular-locale_en-cc.js │ │ │ ├── angular-locale_en-ck.js │ │ │ ├── angular-locale_en-cm.js │ │ │ ├── angular-locale_en-cx.js │ │ │ ├── angular-locale_en-dg.js │ │ │ ├── angular-locale_en-dm.js │ │ │ ├── angular-locale_en-er.js │ │ │ ├── angular-locale_en-fj.js │ │ │ ├── angular-locale_en-fk.js │ │ │ ├── angular-locale_en-fm.js │ │ │ ├── angular-locale_en-gb.js │ │ │ ├── angular-locale_en-gd.js │ │ │ ├── angular-locale_en-gg.js │ │ │ ├── angular-locale_en-gh.js │ │ │ ├── angular-locale_en-gi.js │ │ │ ├── angular-locale_en-gm.js │ │ │ ├── angular-locale_en-gu.js │ │ │ ├── angular-locale_en-gy.js │ │ │ ├── angular-locale_en-hk.js │ │ │ ├── angular-locale_en-ie.js │ │ │ ├── angular-locale_en-im.js │ │ │ ├── angular-locale_en-in.js │ │ │ ├── angular-locale_en-io.js │ │ │ ├── angular-locale_en-iso.js │ │ │ ├── angular-locale_en-je.js │ │ │ ├── angular-locale_en-jm.js │ │ │ ├── angular-locale_en-ke.js │ │ │ ├── angular-locale_en-ki.js │ │ │ ├── angular-locale_en-kn.js │ │ │ ├── angular-locale_en-ky.js │ │ │ ├── angular-locale_en-lc.js │ │ │ ├── angular-locale_en-lr.js │ │ │ ├── angular-locale_en-ls.js │ │ │ ├── angular-locale_en-mg.js │ │ │ ├── angular-locale_en-mh.js │ │ │ ├── angular-locale_en-mo.js │ │ │ ├── angular-locale_en-mp.js │ │ │ ├── angular-locale_en-ms.js │ │ │ ├── angular-locale_en-mt.js │ │ │ ├── angular-locale_en-mu.js │ │ │ ├── angular-locale_en-mw.js │ │ │ ├── angular-locale_en-na.js │ │ │ ├── angular-locale_en-nf.js │ │ │ ├── angular-locale_en-ng.js │ │ │ ├── angular-locale_en-nr.js │ │ │ ├── angular-locale_en-nu.js │ │ │ ├── angular-locale_en-nz.js │ │ │ ├── angular-locale_en-pg.js │ │ │ ├── angular-locale_en-ph.js │ │ │ ├── angular-locale_en-pk.js │ │ │ ├── angular-locale_en-pn.js │ │ │ ├── angular-locale_en-pr.js │ │ │ ├── angular-locale_en-pw.js │ │ │ ├── angular-locale_en-rw.js │ │ │ ├── angular-locale_en-sb.js │ │ │ ├── angular-locale_en-sc.js │ │ │ ├── angular-locale_en-sd.js │ │ │ ├── angular-locale_en-sg.js │ │ │ ├── angular-locale_en-sh.js │ │ │ ├── angular-locale_en-sl.js │ │ │ ├── angular-locale_en-ss.js │ │ │ ├── angular-locale_en-sx.js │ │ │ ├── angular-locale_en-sz.js │ │ │ ├── angular-locale_en-tc.js │ │ │ ├── angular-locale_en-tk.js │ │ │ ├── angular-locale_en-to.js │ │ │ ├── angular-locale_en-tt.js │ │ │ ├── angular-locale_en-tv.js │ │ │ ├── angular-locale_en-tz.js │ │ │ ├── angular-locale_en-ug.js │ │ │ ├── angular-locale_en-um.js │ │ │ ├── angular-locale_en-us.js │ │ │ ├── angular-locale_en-vc.js │ │ │ ├── angular-locale_en-vg.js │ │ │ ├── angular-locale_en-vi.js │ │ │ ├── angular-locale_en-vu.js │ │ │ ├── angular-locale_en-ws.js │ │ │ ├── angular-locale_en-za.js │ │ │ ├── angular-locale_en-zm.js │ │ │ ├── angular-locale_en-zw.js │ │ │ ├── angular-locale_en.js │ │ │ ├── angular-locale_eo-001.js │ │ │ ├── angular-locale_eo.js │ │ │ ├── angular-locale_es-419.js │ │ │ ├── angular-locale_es-ar.js │ │ │ ├── angular-locale_es-bo.js │ │ │ ├── angular-locale_es-cl.js │ │ │ ├── angular-locale_es-co.js │ │ │ ├── angular-locale_es-cr.js │ │ │ ├── angular-locale_es-cu.js │ │ │ ├── angular-locale_es-do.js │ │ │ ├── angular-locale_es-ea.js │ │ │ ├── angular-locale_es-ec.js │ │ │ ├── angular-locale_es-es.js │ │ │ ├── angular-locale_es-gq.js │ │ │ ├── angular-locale_es-gt.js │ │ │ ├── angular-locale_es-hn.js │ │ │ ├── angular-locale_es-ic.js │ │ │ ├── angular-locale_es-mx.js │ │ │ ├── angular-locale_es-ni.js │ │ │ ├── angular-locale_es-pa.js │ │ │ ├── angular-locale_es-pe.js │ │ │ ├── angular-locale_es-ph.js │ │ │ ├── angular-locale_es-pr.js │ │ │ ├── angular-locale_es-py.js │ │ │ ├── angular-locale_es-sv.js │ │ │ ├── angular-locale_es-us.js │ │ │ ├── angular-locale_es-uy.js │ │ │ ├── angular-locale_es-ve.js │ │ │ ├── angular-locale_es.js │ │ │ ├── angular-locale_et-ee.js │ │ │ ├── angular-locale_et.js │ │ │ ├── angular-locale_eu-es.js │ │ │ ├── angular-locale_eu.js │ │ │ ├── angular-locale_ewo-cm.js │ │ │ ├── angular-locale_ewo.js │ │ │ ├── angular-locale_fa-af.js │ │ │ ├── angular-locale_fa-ir.js │ │ │ ├── angular-locale_fa.js │ │ │ ├── angular-locale_ff-cm.js │ │ │ ├── angular-locale_ff-gn.js │ │ │ ├── angular-locale_ff-mr.js │ │ │ ├── angular-locale_ff-sn.js │ │ │ ├── angular-locale_ff.js │ │ │ ├── angular-locale_fi-fi.js │ │ │ ├── angular-locale_fi.js │ │ │ ├── angular-locale_fil-ph.js │ │ │ ├── angular-locale_fil.js │ │ │ ├── angular-locale_fo-fo.js │ │ │ ├── angular-locale_fo.js │ │ │ ├── angular-locale_fr-be.js │ │ │ ├── angular-locale_fr-bf.js │ │ │ ├── angular-locale_fr-bi.js │ │ │ ├── angular-locale_fr-bj.js │ │ │ ├── angular-locale_fr-bl.js │ │ │ ├── angular-locale_fr-ca.js │ │ │ ├── angular-locale_fr-cd.js │ │ │ ├── angular-locale_fr-cf.js │ │ │ ├── angular-locale_fr-cg.js │ │ │ ├── angular-locale_fr-ch.js │ │ │ ├── angular-locale_fr-ci.js │ │ │ ├── angular-locale_fr-cm.js │ │ │ ├── angular-locale_fr-dj.js │ │ │ ├── angular-locale_fr-dz.js │ │ │ ├── angular-locale_fr-fr.js │ │ │ ├── angular-locale_fr-ga.js │ │ │ ├── angular-locale_fr-gf.js │ │ │ ├── angular-locale_fr-gn.js │ │ │ ├── angular-locale_fr-gp.js │ │ │ ├── angular-locale_fr-gq.js │ │ │ ├── angular-locale_fr-ht.js │ │ │ ├── angular-locale_fr-km.js │ │ │ ├── angular-locale_fr-lu.js │ │ │ ├── angular-locale_fr-ma.js │ │ │ ├── angular-locale_fr-mc.js │ │ │ ├── angular-locale_fr-mf.js │ │ │ ├── angular-locale_fr-mg.js │ │ │ ├── angular-locale_fr-ml.js │ │ │ ├── angular-locale_fr-mq.js │ │ │ ├── angular-locale_fr-mr.js │ │ │ ├── angular-locale_fr-mu.js │ │ │ ├── angular-locale_fr-nc.js │ │ │ ├── angular-locale_fr-ne.js │ │ │ ├── angular-locale_fr-pf.js │ │ │ ├── angular-locale_fr-pm.js │ │ │ ├── angular-locale_fr-re.js │ │ │ ├── angular-locale_fr-rw.js │ │ │ ├── angular-locale_fr-sc.js │ │ │ ├── angular-locale_fr-sn.js │ │ │ ├── angular-locale_fr-sy.js │ │ │ ├── angular-locale_fr-td.js │ │ │ ├── angular-locale_fr-tg.js │ │ │ ├── angular-locale_fr-tn.js │ │ │ ├── angular-locale_fr-vu.js │ │ │ ├── angular-locale_fr-wf.js │ │ │ ├── angular-locale_fr-yt.js │ │ │ ├── angular-locale_fr.js │ │ │ ├── angular-locale_fur-it.js │ │ │ ├── angular-locale_fur.js │ │ │ ├── angular-locale_fy-nl.js │ │ │ ├── angular-locale_fy.js │ │ │ ├── angular-locale_ga-ie.js │ │ │ ├── angular-locale_ga.js │ │ │ ├── angular-locale_gd-gb.js │ │ │ ├── angular-locale_gd.js │ │ │ ├── angular-locale_gl-es.js │ │ │ ├── angular-locale_gl.js │ │ │ ├── angular-locale_gsw-ch.js │ │ │ ├── angular-locale_gsw-li.js │ │ │ ├── angular-locale_gsw.js │ │ │ ├── angular-locale_gu-in.js │ │ │ ├── angular-locale_gu.js │ │ │ ├── angular-locale_guz-ke.js │ │ │ ├── angular-locale_guz.js │ │ │ ├── angular-locale_gv-im.js │ │ │ ├── angular-locale_gv.js │ │ │ ├── angular-locale_ha-latn-gh.js │ │ │ ├── angular-locale_ha-latn-ne.js │ │ │ ├── angular-locale_ha-latn-ng.js │ │ │ ├── angular-locale_ha-latn.js │ │ │ ├── angular-locale_ha.js │ │ │ ├── angular-locale_haw-us.js │ │ │ ├── angular-locale_haw.js │ │ │ ├── angular-locale_he-il.js │ │ │ ├── angular-locale_he.js │ │ │ ├── angular-locale_hi-in.js │ │ │ ├── angular-locale_hi.js │ │ │ ├── angular-locale_hr-ba.js │ │ │ ├── angular-locale_hr-hr.js │ │ │ ├── angular-locale_hr.js │ │ │ ├── angular-locale_hu-hu.js │ │ │ ├── angular-locale_hu.js │ │ │ ├── angular-locale_hy-am.js │ │ │ ├── angular-locale_hy.js │ │ │ ├── angular-locale_ia-fr.js │ │ │ ├── angular-locale_ia.js │ │ │ ├── angular-locale_id-id.js │ │ │ ├── angular-locale_id.js │ │ │ ├── angular-locale_ig-ng.js │ │ │ ├── angular-locale_ig.js │ │ │ ├── angular-locale_ii-cn.js │ │ │ ├── angular-locale_ii.js │ │ │ ├── angular-locale_in.js │ │ │ ├── angular-locale_is-is.js │ │ │ ├── angular-locale_is.js │ │ │ ├── angular-locale_it-ch.js │ │ │ ├── angular-locale_it-it.js │ │ │ ├── angular-locale_it-sm.js │ │ │ ├── angular-locale_it.js │ │ │ ├── angular-locale_iw.js │ │ │ ├── angular-locale_ja-jp.js │ │ │ ├── angular-locale_ja.js │ │ │ ├── angular-locale_jgo-cm.js │ │ │ ├── angular-locale_jgo.js │ │ │ ├── angular-locale_jmc-tz.js │ │ │ ├── angular-locale_jmc.js │ │ │ ├── angular-locale_ka-ge.js │ │ │ ├── angular-locale_ka.js │ │ │ ├── angular-locale_kab-dz.js │ │ │ ├── angular-locale_kab.js │ │ │ ├── angular-locale_kam-ke.js │ │ │ ├── angular-locale_kam.js │ │ │ ├── angular-locale_kde-tz.js │ │ │ ├── angular-locale_kde.js │ │ │ ├── angular-locale_kea-cv.js │ │ │ ├── angular-locale_kea.js │ │ │ ├── angular-locale_khq-ml.js │ │ │ ├── angular-locale_khq.js │ │ │ ├── angular-locale_ki-ke.js │ │ │ ├── angular-locale_ki.js │ │ │ ├── angular-locale_kk-cyrl-kz.js │ │ │ ├── angular-locale_kk-cyrl.js │ │ │ ├── angular-locale_kk.js │ │ │ ├── angular-locale_kkj-cm.js │ │ │ ├── angular-locale_kkj.js │ │ │ ├── angular-locale_kl-gl.js │ │ │ ├── angular-locale_kl.js │ │ │ ├── angular-locale_kln-ke.js │ │ │ ├── angular-locale_kln.js │ │ │ ├── angular-locale_km-kh.js │ │ │ ├── angular-locale_km.js │ │ │ ├── angular-locale_kn-in.js │ │ │ ├── angular-locale_kn.js │ │ │ ├── angular-locale_ko-kp.js │ │ │ ├── angular-locale_ko-kr.js │ │ │ ├── angular-locale_ko.js │ │ │ ├── angular-locale_kok-in.js │ │ │ ├── angular-locale_kok.js │ │ │ ├── angular-locale_ks-arab-in.js │ │ │ ├── angular-locale_ks-arab.js │ │ │ ├── angular-locale_ks.js │ │ │ ├── angular-locale_ksb-tz.js │ │ │ ├── angular-locale_ksb.js │ │ │ ├── angular-locale_ksf-cm.js │ │ │ ├── angular-locale_ksf.js │ │ │ ├── angular-locale_ksh-de.js │ │ │ ├── angular-locale_ksh.js │ │ │ ├── angular-locale_kw-gb.js │ │ │ ├── angular-locale_kw.js │ │ │ ├── angular-locale_ky-cyrl-kg.js │ │ │ ├── angular-locale_ky-cyrl.js │ │ │ ├── angular-locale_ky.js │ │ │ ├── angular-locale_lag-tz.js │ │ │ ├── angular-locale_lag.js │ │ │ ├── angular-locale_lg-ug.js │ │ │ ├── angular-locale_lg.js │ │ │ ├── angular-locale_lkt-us.js │ │ │ ├── angular-locale_lkt.js │ │ │ ├── angular-locale_ln-ao.js │ │ │ ├── angular-locale_ln-cd.js │ │ │ ├── angular-locale_ln-cf.js │ │ │ ├── angular-locale_ln-cg.js │ │ │ ├── angular-locale_ln.js │ │ │ ├── angular-locale_lo-la.js │ │ │ ├── angular-locale_lo.js │ │ │ ├── angular-locale_lt-lt.js │ │ │ ├── angular-locale_lt.js │ │ │ ├── angular-locale_lu-cd.js │ │ │ ├── angular-locale_lu.js │ │ │ ├── angular-locale_luo-ke.js │ │ │ ├── angular-locale_luo.js │ │ │ ├── angular-locale_luy-ke.js │ │ │ ├── angular-locale_luy.js │ │ │ ├── angular-locale_lv-lv.js │ │ │ ├── angular-locale_lv.js │ │ │ ├── angular-locale_mas-ke.js │ │ │ ├── angular-locale_mas-tz.js │ │ │ ├── angular-locale_mas.js │ │ │ ├── angular-locale_mer-ke.js │ │ │ ├── angular-locale_mer.js │ │ │ ├── angular-locale_mfe-mu.js │ │ │ ├── angular-locale_mfe.js │ │ │ ├── angular-locale_mg-mg.js │ │ │ ├── angular-locale_mg.js │ │ │ ├── angular-locale_mgh-mz.js │ │ │ ├── angular-locale_mgh.js │ │ │ ├── angular-locale_mgo-cm.js │ │ │ ├── angular-locale_mgo.js │ │ │ ├── angular-locale_mk-mk.js │ │ │ ├── angular-locale_mk.js │ │ │ ├── angular-locale_ml-in.js │ │ │ ├── angular-locale_ml.js │ │ │ ├── angular-locale_mn-cyrl-mn.js │ │ │ ├── angular-locale_mn-cyrl.js │ │ │ ├── angular-locale_mn.js │ │ │ ├── angular-locale_mr-in.js │ │ │ ├── angular-locale_mr.js │ │ │ ├── angular-locale_ms-latn-bn.js │ │ │ ├── angular-locale_ms-latn-my.js │ │ │ ├── angular-locale_ms-latn-sg.js │ │ │ ├── angular-locale_ms-latn.js │ │ │ ├── angular-locale_ms.js │ │ │ ├── angular-locale_mt-mt.js │ │ │ ├── angular-locale_mt.js │ │ │ ├── angular-locale_mua-cm.js │ │ │ ├── angular-locale_mua.js │ │ │ ├── angular-locale_my-mm.js │ │ │ ├── angular-locale_my.js │ │ │ ├── angular-locale_naq-na.js │ │ │ ├── angular-locale_naq.js │ │ │ ├── angular-locale_nb-no.js │ │ │ ├── angular-locale_nb-sj.js │ │ │ ├── angular-locale_nb.js │ │ │ ├── angular-locale_nd-zw.js │ │ │ ├── angular-locale_nd.js │ │ │ ├── angular-locale_ne-in.js │ │ │ ├── angular-locale_ne-np.js │ │ │ ├── angular-locale_ne.js │ │ │ ├── angular-locale_nl-aw.js │ │ │ ├── angular-locale_nl-be.js │ │ │ ├── angular-locale_nl-bq.js │ │ │ ├── angular-locale_nl-cw.js │ │ │ ├── angular-locale_nl-nl.js │ │ │ ├── angular-locale_nl-sr.js │ │ │ ├── angular-locale_nl-sx.js │ │ │ ├── angular-locale_nl.js │ │ │ ├── angular-locale_nmg-cm.js │ │ │ ├── angular-locale_nmg.js │ │ │ ├── angular-locale_nn-no.js │ │ │ ├── angular-locale_nn.js │ │ │ ├── angular-locale_nnh-cm.js │ │ │ ├── angular-locale_nnh.js │ │ │ ├── angular-locale_no-no.js │ │ │ ├── angular-locale_no.js │ │ │ ├── angular-locale_nr-za.js │ │ │ ├── angular-locale_nr.js │ │ │ ├── angular-locale_nso-za.js │ │ │ ├── angular-locale_nso.js │ │ │ ├── angular-locale_nus-sd.js │ │ │ ├── angular-locale_nus.js │ │ │ ├── angular-locale_nyn-ug.js │ │ │ ├── angular-locale_nyn.js │ │ │ ├── angular-locale_om-et.js │ │ │ ├── angular-locale_om-ke.js │ │ │ ├── angular-locale_om.js │ │ │ ├── angular-locale_or-in.js │ │ │ ├── angular-locale_or.js │ │ │ ├── angular-locale_os-ge.js │ │ │ ├── angular-locale_os-ru.js │ │ │ ├── angular-locale_os.js │ │ │ ├── angular-locale_pa-arab-pk.js │ │ │ ├── angular-locale_pa-arab.js │ │ │ ├── angular-locale_pa-guru-in.js │ │ │ ├── angular-locale_pa-guru.js │ │ │ ├── angular-locale_pa.js │ │ │ ├── angular-locale_pl-pl.js │ │ │ ├── angular-locale_pl.js │ │ │ ├── angular-locale_ps-af.js │ │ │ ├── angular-locale_ps.js │ │ │ ├── angular-locale_pt-ao.js │ │ │ ├── angular-locale_pt-br.js │ │ │ ├── angular-locale_pt-cv.js │ │ │ ├── angular-locale_pt-gw.js │ │ │ ├── angular-locale_pt-mo.js │ │ │ ├── angular-locale_pt-mz.js │ │ │ ├── angular-locale_pt-pt.js │ │ │ ├── angular-locale_pt-st.js │ │ │ ├── angular-locale_pt-tl.js │ │ │ ├── angular-locale_pt.js │ │ │ ├── angular-locale_rm-ch.js │ │ │ ├── angular-locale_rm.js │ │ │ ├── angular-locale_rn-bi.js │ │ │ ├── angular-locale_rn.js │ │ │ ├── angular-locale_ro-md.js │ │ │ ├── angular-locale_ro-ro.js │ │ │ ├── angular-locale_ro.js │ │ │ ├── angular-locale_rof-tz.js │ │ │ ├── angular-locale_rof.js │ │ │ ├── angular-locale_ru-by.js │ │ │ ├── angular-locale_ru-kg.js │ │ │ ├── angular-locale_ru-kz.js │ │ │ ├── angular-locale_ru-md.js │ │ │ ├── angular-locale_ru-ru.js │ │ │ ├── angular-locale_ru-ua.js │ │ │ ├── angular-locale_ru.js │ │ │ ├── angular-locale_rw-rw.js │ │ │ ├── angular-locale_rw.js │ │ │ ├── angular-locale_rwk-tz.js │ │ │ ├── angular-locale_rwk.js │ │ │ ├── angular-locale_sah-ru.js │ │ │ ├── angular-locale_sah.js │ │ │ ├── angular-locale_saq-ke.js │ │ │ ├── angular-locale_saq.js │ │ │ ├── angular-locale_sbp-tz.js │ │ │ ├── angular-locale_sbp.js │ │ │ ├── angular-locale_se-fi.js │ │ │ ├── angular-locale_se-no.js │ │ │ ├── angular-locale_se.js │ │ │ ├── angular-locale_seh-mz.js │ │ │ ├── angular-locale_seh.js │ │ │ ├── angular-locale_ses-ml.js │ │ │ ├── angular-locale_ses.js │ │ │ ├── angular-locale_sg-cf.js │ │ │ ├── angular-locale_sg.js │ │ │ ├── angular-locale_shi-latn-ma.js │ │ │ ├── angular-locale_shi-latn.js │ │ │ ├── angular-locale_shi-tfng-ma.js │ │ │ ├── angular-locale_shi-tfng.js │ │ │ ├── angular-locale_shi.js │ │ │ ├── angular-locale_si-lk.js │ │ │ ├── angular-locale_si.js │ │ │ ├── angular-locale_sk-sk.js │ │ │ ├── angular-locale_sk.js │ │ │ ├── angular-locale_sl-si.js │ │ │ ├── angular-locale_sl.js │ │ │ ├── angular-locale_sn-zw.js │ │ │ ├── angular-locale_sn.js │ │ │ ├── angular-locale_so-dj.js │ │ │ ├── angular-locale_so-et.js │ │ │ ├── angular-locale_so-ke.js │ │ │ ├── angular-locale_so-so.js │ │ │ ├── angular-locale_so.js │ │ │ ├── angular-locale_sq-al.js │ │ │ ├── angular-locale_sq-mk.js │ │ │ ├── angular-locale_sq-xk.js │ │ │ ├── angular-locale_sq.js │ │ │ ├── angular-locale_sr-cyrl-ba.js │ │ │ ├── angular-locale_sr-cyrl-me.js │ │ │ ├── angular-locale_sr-cyrl-rs.js │ │ │ ├── angular-locale_sr-cyrl-xk.js │ │ │ ├── angular-locale_sr-cyrl.js │ │ │ ├── angular-locale_sr-latn-ba.js │ │ │ ├── angular-locale_sr-latn-me.js │ │ │ ├── angular-locale_sr-latn-rs.js │ │ │ ├── angular-locale_sr-latn-xk.js │ │ │ ├── angular-locale_sr-latn.js │ │ │ ├── angular-locale_sr.js │ │ │ ├── angular-locale_ss-sz.js │ │ │ ├── angular-locale_ss-za.js │ │ │ ├── angular-locale_ss.js │ │ │ ├── angular-locale_ssy-er.js │ │ │ ├── angular-locale_ssy.js │ │ │ ├── angular-locale_st-ls.js │ │ │ ├── angular-locale_st-za.js │ │ │ ├── angular-locale_st.js │ │ │ ├── angular-locale_sv-ax.js │ │ │ ├── angular-locale_sv-fi.js │ │ │ ├── angular-locale_sv-se.js │ │ │ ├── angular-locale_sv.js │ │ │ ├── angular-locale_sw-ke.js │ │ │ ├── angular-locale_sw-tz.js │ │ │ ├── angular-locale_sw-ug.js │ │ │ ├── angular-locale_sw.js │ │ │ ├── angular-locale_swc-cd.js │ │ │ ├── angular-locale_swc.js │ │ │ ├── angular-locale_ta-in.js │ │ │ ├── angular-locale_ta-lk.js │ │ │ ├── angular-locale_ta-my.js │ │ │ ├── angular-locale_ta-sg.js │ │ │ ├── angular-locale_ta.js │ │ │ ├── angular-locale_te-in.js │ │ │ ├── angular-locale_te.js │ │ │ ├── angular-locale_teo-ke.js │ │ │ ├── angular-locale_teo-ug.js │ │ │ ├── angular-locale_teo.js │ │ │ ├── angular-locale_tg-cyrl-tj.js │ │ │ ├── angular-locale_tg-cyrl.js │ │ │ ├── angular-locale_tg.js │ │ │ ├── angular-locale_th-th.js │ │ │ ├── angular-locale_th.js │ │ │ ├── angular-locale_ti-er.js │ │ │ ├── angular-locale_ti-et.js │ │ │ ├── angular-locale_ti.js │ │ │ ├── angular-locale_tig-er.js │ │ │ ├── angular-locale_tig.js │ │ │ ├── angular-locale_tl.js │ │ │ ├── angular-locale_tn-bw.js │ │ │ ├── angular-locale_tn-za.js │ │ │ ├── angular-locale_tn.js │ │ │ ├── angular-locale_to-to.js │ │ │ ├── angular-locale_to.js │ │ │ ├── angular-locale_tr-cy.js │ │ │ ├── angular-locale_tr-tr.js │ │ │ ├── angular-locale_tr.js │ │ │ ├── angular-locale_ts-za.js │ │ │ ├── angular-locale_ts.js │ │ │ ├── angular-locale_twq-ne.js │ │ │ ├── angular-locale_twq.js │ │ │ ├── angular-locale_tzm-latn-ma.js │ │ │ ├── angular-locale_tzm-latn.js │ │ │ ├── angular-locale_tzm.js │ │ │ ├── angular-locale_ug-arab-cn.js │ │ │ ├── angular-locale_ug-arab.js │ │ │ ├── angular-locale_ug.js │ │ │ ├── angular-locale_uk-ua.js │ │ │ ├── angular-locale_uk.js │ │ │ ├── angular-locale_ur-in.js │ │ │ ├── angular-locale_ur-pk.js │ │ │ ├── angular-locale_ur.js │ │ │ ├── angular-locale_uz-arab-af.js │ │ │ ├── angular-locale_uz-arab.js │ │ │ ├── angular-locale_uz-cyrl-uz.js │ │ │ ├── angular-locale_uz-cyrl.js │ │ │ ├── angular-locale_uz-latn-uz.js │ │ │ ├── angular-locale_uz-latn.js │ │ │ ├── angular-locale_uz.js │ │ │ ├── angular-locale_vai-latn-lr.js │ │ │ ├── angular-locale_vai-latn.js │ │ │ ├── angular-locale_vai-vaii-lr.js │ │ │ ├── angular-locale_vai-vaii.js │ │ │ ├── angular-locale_vai.js │ │ │ ├── angular-locale_ve-za.js │ │ │ ├── angular-locale_ve.js │ │ │ ├── angular-locale_vi-vn.js │ │ │ ├── angular-locale_vi.js │ │ │ ├── angular-locale_vo-001.js │ │ │ ├── angular-locale_vo.js │ │ │ ├── angular-locale_vun-tz.js │ │ │ ├── angular-locale_vun.js │ │ │ ├── angular-locale_wae-ch.js │ │ │ ├── angular-locale_wae.js │ │ │ ├── angular-locale_wal-et.js │ │ │ ├── angular-locale_wal.js │ │ │ ├── angular-locale_xh-za.js │ │ │ ├── angular-locale_xh.js │ │ │ ├── angular-locale_xog-ug.js │ │ │ ├── angular-locale_xog.js │ │ │ ├── angular-locale_yav-cm.js │ │ │ ├── angular-locale_yav.js │ │ │ ├── angular-locale_yo-bj.js │ │ │ ├── angular-locale_yo-ng.js │ │ │ ├── angular-locale_yo.js │ │ │ ├── angular-locale_zgh-ma.js │ │ │ ├── angular-locale_zgh.js │ │ │ ├── angular-locale_zh-cn.js │ │ │ ├── angular-locale_zh-hans-cn.js │ │ │ ├── angular-locale_zh-hans-hk.js │ │ │ ├── angular-locale_zh-hans-mo.js │ │ │ ├── angular-locale_zh-hans-sg.js │ │ │ ├── angular-locale_zh-hans.js │ │ │ ├── angular-locale_zh-hant-hk.js │ │ │ ├── angular-locale_zh-hant-mo.js │ │ │ ├── angular-locale_zh-hant-tw.js │ │ │ ├── angular-locale_zh-hant.js │ │ │ ├── angular-locale_zh-hk.js │ │ │ ├── angular-locale_zh-tw.js │ │ │ ├── angular-locale_zh.js │ │ │ ├── angular-locale_zu-za.js │ │ │ └── angular-locale_zu.js │ │ │ ├── version.json │ │ │ └── version.txt │ ├── app │ │ ├── app.js │ │ ├── demographics.js │ │ └── imagemap.js │ ├── bootflat │ │ ├── css │ │ │ ├── bootflat.css │ │ │ ├── bootflat.css.map │ │ │ └── bootflat.min.css │ │ ├── img │ │ │ └── check_flat │ │ │ │ ├── default.png │ │ │ │ └── default.psd │ │ ├── js │ │ │ ├── icheck.min.js │ │ │ ├── jquery.fs.selecter.js │ │ │ ├── jquery.fs.selecter.min.js │ │ │ └── jquery.fs.stepper.min.js │ │ └── scss │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── bootflat.scss │ │ │ └── bootflat │ │ │ ├── _accordion.scss │ │ │ ├── _alert.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button.scss │ │ │ ├── _button_group.scss │ │ │ ├── _calendar.scss │ │ │ ├── _checkbox_radio.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _footer.scss │ │ │ ├── _form.scss │ │ │ ├── _global.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _label_badge.scss │ │ │ ├── _list.scss │ │ │ ├── _media_list.scss │ │ │ ├── _modal.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panel.scss │ │ │ ├── _pill.scss │ │ │ ├── _popover.scss │ │ │ ├── _pricing.scss │ │ │ ├── _progress.scss │ │ │ ├── _selecter.scss │ │ │ ├── _stepper.scss │ │ │ ├── _tab.scss │ │ │ ├── _thumbnail.scss │ │ │ ├── _timeline.scss │ │ │ ├── _toggle.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _typography.scss │ │ │ └── _well.scss │ ├── css │ │ ├── animate.css │ │ ├── bootstrap.min.css │ │ ├── dropzone.css │ │ ├── font-awesome.min.css │ │ ├── jPushMenu.css │ │ ├── jquery-ui │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_999999_40x100.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_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_75_ffffff_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_428bca_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ ├── ui-icons_999999_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-icons_f0ad4e_256x240.png │ │ │ │ ├── ui-icons_f6cf3b_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── jquery-ui-1.10.3.custom.css │ │ └── style.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── index.html │ ├── js │ │ ├── bootstrap-growl.min.js │ │ ├── bootstrap.min.js │ │ ├── dropzone.min.js │ │ ├── jPushMenu.js │ │ ├── jquery-2.1.1.min.js │ │ ├── jquery-2.1.1.min.map │ │ ├── jquery-ui-1.11.1.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.maphilight.js │ │ └── jquery.rwdImageMaps.js │ └── media │ │ └── images │ │ ├── layerview_torso_100.jpg │ │ └── layerview_torso_50.jpg └── terminology │ ├── bootflat │ ├── css │ │ ├── bootflat.css │ │ ├── bootflat.css.map │ │ └── bootflat.min.css │ ├── img │ │ └── check_flat │ │ │ ├── default.png │ │ │ └── default.psd │ ├── js │ │ ├── icheck.min.js │ │ ├── jquery.fs.selecter.min.js │ │ └── jquery.fs.stepper.min.js │ └── scss │ │ ├── .csscomb.json │ │ ├── .csslintrc │ │ ├── bootflat.scss │ │ └── bootflat │ │ ├── _accordion.scss │ │ ├── _alert.scss │ │ ├── _breadcrumb.scss │ │ ├── _button.scss │ │ ├── _button_group.scss │ │ ├── _calendar.scss │ │ ├── _checkbox_radio.scss │ │ ├── _dropdown.scss │ │ ├── _footer.scss │ │ ├── _form.scss │ │ ├── _global.scss │ │ ├── _jumbotron.scss │ │ ├── _label_badge.scss │ │ ├── _list.scss │ │ ├── _media_list.scss │ │ ├── _modal.scss │ │ ├── _navbar.scss │ │ ├── _pager.scss │ │ ├── _pagination.scss │ │ ├── _panel.scss │ │ ├── _pill.scss │ │ ├── _popover.scss │ │ ├── _pricing.scss │ │ ├── _progress.scss │ │ ├── _selecter.scss │ │ ├── _stepper.scss │ │ ├── _tab.scss │ │ ├── _thumbnail.scss │ │ ├── _timeline.scss │ │ ├── _toggle.scss │ │ ├── _tooltip.scss │ │ ├── _typography.scss │ │ └── _well.scss │ ├── css │ ├── bootstrap.min.css │ ├── font-awesome.css │ └── terminologies.css │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ ├── js │ ├── bootstrap.min.js │ ├── jquery-2.1.1.min.js │ ├── jquery-2.1.1.min.map │ ├── jquery-ui-1.10.4.min.js │ └── terminologies.js │ ├── jsTree │ ├── jstree.min.js │ └── themes │ │ └── default │ │ ├── 32px.png │ │ ├── 40px.png │ │ ├── style.css │ │ ├── style.min.css │ │ └── throbber.gif │ └── terminologies.html ├── openep ├── tm-api │ ├── pom.xml │ ├── tm-core-api │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── marand │ │ │ └── thinkmed │ │ │ └── api │ │ │ └── core │ │ │ ├── Dictionary.java │ │ │ ├── GrammaticalGender.java │ │ │ ├── JsonSerializable.java │ │ │ ├── ThrowableConverter.java │ │ │ ├── data │ │ │ └── object │ │ │ │ └── DataTransferObject.java │ │ │ └── time │ │ │ ├── CurrentTimeProvider.java │ │ │ ├── TimestampFactory.java │ │ │ └── impl │ │ │ └── CurrentTimestampFactory.java │ ├── tm-demographics-api │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── marand │ │ │ └── thinkmed │ │ │ └── api │ │ │ ├── demographics │ │ │ ├── DemographicsUtils.java │ │ │ ├── PersonImageUtils.java │ │ │ ├── PersonNameForm.java │ │ │ └── data │ │ │ │ ├── Gender.java │ │ │ │ └── object │ │ │ │ └── NameDto.java │ │ │ └── organization │ │ │ ├── NoKnownClinicProvider.java │ │ │ └── data │ │ │ └── KnownClinic.java │ ├── tm-externals-api │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── marand │ │ │ └── thinkmed │ │ │ └── api │ │ │ └── externals │ │ │ └── data │ │ │ └── object │ │ │ ├── ExternalCatalogDto.java │ │ │ ├── ExternalIdentityDto.java │ │ │ └── NamedExternalDto.java │ ├── tm-medical-api │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── marand │ │ │ └── thinkmed │ │ │ └── api │ │ │ └── medical │ │ │ └── data │ │ │ └── CareProvisionType.java │ ├── tm-medications-api │ │ └── pom.xml │ └── tm-patient-api │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── marand │ │ └── thinkmed │ │ └── api │ │ ├── PatientImageUtils.java │ │ └── PatientSpecialStatus.java ├── tm-fdb │ ├── pom.xml │ ├── tm-fdb-common │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── marand │ │ │ └── thinkmed │ │ │ └── fdb │ │ │ └── dto │ │ │ ├── FdbDrugSensitivityWarningDto.java │ │ │ ├── FdbEnums.java │ │ │ ├── FdbNameId.java │ │ │ ├── FdbNameValue.java │ │ │ ├── FdbPatientChecksWarningDto.java │ │ │ ├── FdbPatientDto.java │ │ │ ├── FdbScreeningDto.java │ │ │ ├── FdbScreeningResultDto.java │ │ │ ├── FdbTerminologyDto.java │ │ │ ├── FdbTerminologyWithConceptDto.java │ │ │ └── FdbWarningDto.java │ └── tm-fdb-server │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── marand │ │ │ │ └── thinkmed │ │ │ │ └── fdb │ │ │ │ ├── rest │ │ │ │ └── FdbRestService.java │ │ │ │ └── service │ │ │ │ └── impl │ │ │ │ └── FdbServiceImpl.java │ │ └── resources │ │ │ └── com │ │ │ └── marand │ │ │ └── thinkmed │ │ │ └── fdb │ │ │ └── FdbService-context.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── marand │ │ └── thinkmed │ │ └── fdb │ │ └── FdbTestTool.java ├── tm-medications-external │ ├── pom.xml │ ├── tm-medications-external-common │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── marand │ │ │ └── thinkmed │ │ │ └── medicationsexternal │ │ │ ├── WarningSeverity.java │ │ │ ├── WarningType.java │ │ │ ├── dto │ │ │ ├── DoseRangeCheckDto.java │ │ │ ├── MedicationForWarningsSearchDto.java │ │ │ ├── MedicationWarningsDto.java │ │ │ ├── MedicationsWarningDto.java │ │ │ ├── UnitValueDto.java │ │ │ └── WarningsProviderDto.java │ │ │ └── service │ │ │ └── MedicationsExternalService.java │ └── tm-medications-external-server │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── marand │ │ │ └── thinkmed │ │ │ └── medicationsexternal │ │ │ ├── plugin │ │ │ └── MedicationExternalDataPlugin.java │ │ │ └── service │ │ │ └── impl │ │ │ └── MedicationsExternalServiceImpl.java │ │ └── resources │ │ └── MedicationsExternalService-context.xml └── tm-medications │ ├── pom.xml │ ├── tm-medications-bpm-common │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── marand │ │ └── thinkmed │ │ └── bpm │ │ └── medications │ │ └── process │ │ ├── PharmacistReviewProcess.java │ │ ├── PharmacySupplyProcess.java │ │ └── PreparePerfusionSyringeProcess.java │ ├── tm-medications-bpm-server │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── marand │ │ │ └── thinkmed │ │ │ └── medications │ │ │ └── task │ │ │ ├── TaskListenerUtils.java │ │ │ └── listener │ │ │ ├── DispenseMedicationTaskListener.java │ │ │ ├── PerfusionSyringeCompletePreparationTaskListener.java │ │ │ ├── PerfusionSyringeDispenseMedicationTaskListener.java │ │ │ ├── PerfusionSyringeStartPreparationTaskListener.java │ │ │ ├── SupplyReminderTaskListener.java │ │ │ └── SupplyReviewTaskListener.java │ │ ├── process │ │ ├── PharmacySupplyProcess.bpmn20.xml │ │ └── PreparePerfusionSyringeProcess.bpmn20.xml │ │ └── resources │ │ └── MedicationsBpmModule-context.xml │ ├── tm-medications-client │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── marand │ │ │ └── thinkmed │ │ │ └── medications │ │ │ └── client │ │ │ ├── MedicationsContext.java │ │ │ └── SampleMedicationsJRDataSourceFactory.java │ │ ├── resources │ │ └── com │ │ │ └── marand │ │ │ └── thinkmed │ │ │ └── medications │ │ │ └── client │ │ │ └── Medications-context.xml │ │ └── test │ │ └── com.marand.thinkmed.medications.client │ │ └── PerfusionSyringeLabelJRDataSourceFactory.java │ ├── tm-medications-common │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── marand │ │ ├── openehr │ │ └── medications │ │ │ └── tdo │ │ │ ├── AdministrationDetailsCluster.java │ │ │ ├── EPrescriptionSloveniaComposition.java │ │ │ ├── IngredientsAndFormCluster.java │ │ │ ├── MedicationActionAction.java │ │ │ ├── MedicationAdministrationComposition.java │ │ │ ├── MedicationAuthorisationSloveniaCluster.java │ │ │ ├── MedicationConsentFormComposition.java │ │ │ ├── MedicationInstructionInstruction.java │ │ │ ├── MedicationOnAdmissionComposition.java │ │ │ ├── MedicationOnDischargeComposition.java │ │ │ ├── MedicationOrderComposition.java │ │ │ ├── MedicationReferenceWeightComposition.java │ │ │ ├── PharmacyReviewReportComposition.java │ │ │ └── StructuredDoseCluster.java │ │ └── thinkmed │ │ └── medications │ │ ├── ActionReasonType.java │ │ ├── AdministrationPatientTaskLimitsPreference.java │ │ ├── AdministrationResultEnum.java │ │ ├── AdministrationStatusEnum.java │ │ ├── AdministrationTaskLimitsPreference.java │ │ ├── AdministrationTypeEnum.java │ │ ├── ClinicalInterventionEnum.java │ │ ├── DoseFormType.java │ │ ├── DosingFrequencyTypeEnum.java │ │ ├── EhrTerminologyEnum.java │ │ ├── InfusionSetChangeEnum.java │ │ ├── MedicationActionEnum.java │ │ ├── MedicationAdditionalInstructionEnum.java │ │ ├── MedicationAdjustToTimePreference.java │ │ ├── MedicationAdministrationTimingPreference.java │ │ ├── MedicationDeliveryMethodEnum.java │ │ ├── MedicationExternalSystemType.java │ │ ├── MedicationFinderFilterEnum.java │ │ ├── MedicationJobPerformerEnum.java │ │ ├── MedicationLevelEnum.java │ │ ├── MedicationOrderActionEnum.java │ │ ├── MedicationOrderFormType.java │ │ ├── MedicationPreferences.java │ │ ├── MedicationPreferencesUtil.java │ │ ├── MedicationRouteTypeEnum.java │ │ ├── MedicationStartCriterionEnum.java │ │ ├── MedicationTypeEnum.java │ │ ├── MedicationsExternalValueType.java │ │ ├── ParticipationTypeEnum.java │ │ ├── PharmacistReviewTaskStatusEnum.java │ │ ├── PrescriptionChangeTypeEnum.java │ │ ├── PrescriptionLocalDetailsDto.java │ │ ├── RoundsIntervalPreference.java │ │ ├── SelfAdministeringActionEnum.java │ │ ├── TaskTypeEnum.java │ │ ├── TherapyAssigneeEnum.java │ │ ├── TherapyAuthorityEnum.java │ │ ├── TherapyBatchActionEnum.java │ │ ├── TherapyCommentEnum.java │ │ ├── TherapyDoseTypeEnum.java │ │ ├── TherapyJsonDeserializer.java │ │ ├── TherapyReportStatusEnum.java │ │ ├── TherapySortTypeEnum.java │ │ ├── TherapySourceGroupEnum.java │ │ ├── TherapyStatusEnum.java │ │ ├── TherapyTagEnum.java │ │ ├── TherapyTaggingUtils.java │ │ ├── TherapyTemplateModeEnum.java │ │ ├── TherapyTemplateTypeEnum.java │ │ ├── TitrationType.java │ │ ├── activity │ │ └── MedicationsActivityConstants.java │ │ ├── dto │ │ ├── AdministrationPatientTaskLimitsDto.java │ │ ├── AdministrationTaskLimitsDto.java │ │ ├── AdministrationTimingDto.java │ │ ├── BnfMaximumDto.java │ │ ├── BnfMaximumUnitType.java │ │ ├── CodedNameDto.java │ │ ├── ComplexTherapyDto.java │ │ ├── ConstantComplexTherapyDto.java │ │ ├── ConstantSimpleTherapyDto.java │ │ ├── ConstantTherapy.java │ │ ├── DocumentationTherapiesDto.java │ │ ├── DoseFormDto.java │ │ ├── DosingFrequencyDto.java │ │ ├── ExternalPrescriptionPackageDto.java │ │ ├── ExternalPrescriptionTherapyDto.java │ │ ├── IndicationDto.java │ │ ├── InfusionIngredientDto.java │ │ ├── InfusionRateCalculationDto.java │ │ ├── MedicationCustomGroupDto.java │ │ ├── MedicationDataDto.java │ │ ├── MedicationDocumentDto.java │ │ ├── MedicationDto.java │ │ ├── MedicationHolderDto.java │ │ ├── MedicationIngredientDto.java │ │ ├── MedicationRouteDto.java │ │ ├── MedicationSimpleDto.java │ │ ├── MedicationSiteDto.java │ │ ├── OxygenStartingDevice.java │ │ ├── OxygenTherapyDto.java │ │ ├── PrescriptionDto.java │ │ ├── PrescriptionSupplyType.java │ │ ├── RoundsIntervalDto.java │ │ ├── SaveMedicationOrderDto.java │ │ ├── SimpleMedicationOrderDoseDto.java │ │ ├── SimpleTherapyDto.java │ │ ├── TherapyActionHistoryDto.java │ │ ├── TherapyActionHistoryType.java │ │ ├── TherapyChangeReasonDto.java │ │ ├── TherapyChangeReasonEnum.java │ │ ├── TherapyDoseDto.java │ │ ├── TherapyDto.java │ │ ├── TherapyForTitrationDto.java │ │ ├── TherapyReloadAfterActionDto.java │ │ ├── TherapyTemplateDto.java │ │ ├── TherapyTemplateElementDto.java │ │ ├── TherapyTemplatesDto.java │ │ ├── TherapyViewPatientDto.java │ │ ├── TitrationDto.java │ │ ├── VariableComplexTherapyDto.java │ │ ├── VariableSimpleTherapyDto.java │ │ ├── VariableTherapy.java │ │ ├── administration │ │ │ ├── AdjustAdministrationSubtype.java │ │ │ ├── AdjustInfusionAdministrationDto.java │ │ │ ├── AdjustOxygenAdministrationDto.java │ │ │ ├── AdministrationDto.java │ │ │ ├── AdministrationPatientTaskDto.java │ │ │ ├── AdministrationTaskDto.java │ │ │ ├── BolusAdministrationDto.java │ │ │ ├── DoseAdministration.java │ │ │ ├── InfusionBagAdministration.java │ │ │ ├── InfusionBagDto.java │ │ │ ├── InfusionBagTaskDto.java │ │ │ ├── InfusionSetChangeDto.java │ │ │ ├── OxygenAdministration.java │ │ │ ├── OxygenTaskDto.java │ │ │ ├── PlannedDoseAdministration.java │ │ │ ├── StartAdministrationDto.java │ │ │ ├── StartAdministrationSubtype.java │ │ │ ├── StartOxygenAdministrationDto.java │ │ │ └── StopAdministrationDto.java │ │ ├── admission │ │ │ ├── AdmissionSourceMedicationDto.java │ │ │ ├── MedicationOnAdmissionDto.java │ │ │ ├── MedicationOnAdmissionGroupDto.java │ │ │ ├── MedicationOnAdmissionReconciliationDto.java │ │ │ └── MedicationOnAdmissionStatus.java │ │ ├── allergies │ │ │ └── CheckNewAllergiesTaskDto.java │ │ ├── audittrail │ │ │ └── TherapyAuditTrailDto.java │ │ ├── barcode │ │ │ └── BarcodeTaskSearchDto.java │ │ ├── change │ │ │ ├── DoseToVariableDoseTherapyChangeDto.java │ │ │ ├── RateToVariableRateTherapyChangeDto.java │ │ │ ├── StringTherapyChangeDto.java │ │ │ ├── StringsTherapyChangeDto.java │ │ │ ├── TherapyChangeDto.java │ │ │ ├── TherapyChangeType.java │ │ │ ├── VariableDoseTherapyChangeDto.java │ │ │ ├── VariableDoseToDoseTherapyChangeDto.java │ │ │ ├── VariableRateTherapyChangeDto.java │ │ │ └── VariableRateToRateTherapyChangeDto.java │ │ ├── discharge │ │ │ ├── DischargeSourceMedicationDto.java │ │ │ ├── MedicationOnDischargeDto.java │ │ │ ├── MedicationOnDischargeGroupDto.java │ │ │ ├── MedicationOnDischargeReconciliationDto.java │ │ │ └── MedicationOnDischargeStatus.java │ │ ├── document │ │ │ ├── TherapyDocumentContent.java │ │ │ ├── TherapyDocumentDto.java │ │ │ ├── TherapyDocumentType.java │ │ │ ├── TherapyDocumentTypeEnum.java │ │ │ └── TherapyDocumentsDto.java │ │ ├── dose │ │ │ ├── ComplexDoseElementDto.java │ │ │ ├── DoseRangeDto.java │ │ │ ├── SimpleDoseElementDto.java │ │ │ ├── TimedComplexDoseElementDto.java │ │ │ └── TimedSimpleDoseElementDto.java │ │ ├── mentalHealth │ │ │ ├── CheckMentalHealthMedsTaskDto.java │ │ │ ├── MentalHealthAllowedMedicationsDo.java │ │ │ ├── MentalHealthDocumentDto.java │ │ │ ├── MentalHealthDocumentType.java │ │ │ ├── MentalHealthMedicationDto.java │ │ │ ├── MentalHealthTemplateDto.java │ │ │ ├── MentalHealthTemplateMemberDto.java │ │ │ └── MentalHealthTherapyDto.java │ │ ├── overview │ │ │ ├── ContinuousInfusionTherapyRowDtoDto.java │ │ │ ├── OxygenTherapyRowDtoDto.java │ │ │ ├── RateTherapyRowDto.java │ │ │ ├── TherapyDayDto.java │ │ │ ├── TherapyFlowDto.java │ │ │ ├── TherapyFlowRowDto.java │ │ │ ├── TherapyRowDto.java │ │ │ └── TherapyTimelineDto.java │ │ ├── pharmacist │ │ │ ├── perfusionSyringe │ │ │ │ ├── PerfusionSyringeLabelDto.java │ │ │ │ └── PerfusionSyringePreparationDto.java │ │ │ ├── review │ │ │ │ ├── MedicationSupplyTypeEnum.java │ │ │ │ ├── PharmacistReviewDto.java │ │ │ │ ├── PharmacistReviewStatusEnum.java │ │ │ │ ├── PharmacistReviewTherapyDto.java │ │ │ │ ├── PharmacistReviewsDto.java │ │ │ │ ├── PharmacistTherapyChangeType.java │ │ │ │ ├── ReviewPharmacistReviewAction.java │ │ │ │ ├── SupplyDataForPharmacistReviewDto.java │ │ │ │ ├── TherapyPharmacistReviewStatusEnum.java │ │ │ │ ├── TherapyProblemDescriptionDto.java │ │ │ │ └── TherapyProblemDescriptionEnum.java │ │ │ └── task │ │ │ │ ├── DispenseMedicationTaskDto.java │ │ │ │ ├── DispenseMedicationTaskSimpleDto.java │ │ │ │ ├── MedicationSupplyTaskDto.java │ │ │ │ ├── MedicationSupplyTaskSimpleDto.java │ │ │ │ ├── PatientTherapyTasksDto.java │ │ │ │ ├── PerfusionSyringePatientTasksDto.java │ │ │ │ ├── PerfusionSyringeTaskDto.java │ │ │ │ ├── PerfusionSyringeTaskSimpleDto.java │ │ │ │ ├── PharmacistReminderTaskDto.java │ │ │ │ ├── PharmacistReviewTaskDto.java │ │ │ │ ├── SupplyReminderTaskDto.java │ │ │ │ ├── SupplyReminderTaskSimpleDto.java │ │ │ │ ├── SupplyReviewTaskDto.java │ │ │ │ └── SupplyReviewTaskSimpleDto.java │ │ ├── prescription │ │ │ ├── PrescriptionPackageDto.java │ │ │ └── PrescriptionTherapyDto.java │ │ ├── reconsiliation │ │ │ ├── ReconciliationRowDto.java │ │ │ ├── ReconciliationRowGroupEnum.java │ │ │ └── SourceMedicationDto.java │ │ ├── report │ │ │ ├── TherapyDayElementReportDto.java │ │ │ ├── TherapyDayReportDto.java │ │ │ ├── TherapyDayReportUtils.java │ │ │ ├── TherapyReportPdfDto.java │ │ │ ├── TherapySurgeryReportDto.java │ │ │ └── TherapySurgeryReportElementDto.java │ │ ├── supply │ │ │ ├── MedicationControlDrugSupplyDto.java │ │ │ ├── MedicationSupplyCandidateDto.java │ │ │ └── PrescriptionSupplyDto.java │ │ ├── task │ │ │ ├── PatientTaskDto.java │ │ │ └── TherapyTaskSimpleDto.java │ │ └── warning │ │ │ ├── AdditionalWarningDto.java │ │ │ ├── AdditionalWarningSimpleDto.java │ │ │ ├── AdditionalWarningTaskDto.java │ │ │ ├── AdditionalWarningsActionDto.java │ │ │ ├── AdditionalWarningsDto.java │ │ │ ├── AdditionalWarningsType.java │ │ │ ├── OverrideWarningDto.java │ │ │ └── TherapyAdditionalWarningDto.java │ │ ├── html │ │ └── HtmlMedicationsActions.java │ │ ├── model │ │ ├── ActionReason.java │ │ ├── AtcClassification.java │ │ ├── DoseForm.java │ │ ├── Medication.java │ │ ├── MedicationBasicUnit.java │ │ ├── MedicationCustomGroup.java │ │ ├── MedicationCustomGroupMember.java │ │ ├── MedicationExternal.java │ │ ├── MedicationExternalCrossTab.java │ │ ├── MedicationFormulary.java │ │ ├── MedicationGeneric.java │ │ ├── MedicationIndication.java │ │ ├── MedicationIndicationLink.java │ │ ├── MedicationIngredient.java │ │ ├── MedicationIngredientLink.java │ │ ├── MedicationRoute.java │ │ ├── MedicationRouteLink.java │ │ ├── MedicationRouteRelation.java │ │ ├── MedicationTaskVariable.java │ │ ├── MedicationType.java │ │ ├── MedicationVersion.java │ │ ├── MedicationWarning.java │ │ ├── MentalHealthTemplate.java │ │ ├── MentalHealthTemplateMember.java │ │ ├── PatientTherapyLastLinkName.java │ │ ├── ResetMedications.java │ │ ├── TherapyChanged.java │ │ ├── TherapyTemplate.java │ │ └── TherapyTemplateElement.java │ │ ├── rule │ │ ├── MedicationParacetamolRuleType.java │ │ ├── MedicationRuleEnum.java │ │ ├── parameters │ │ │ ├── ParacetamolRuleForAdministrationParameters.java │ │ │ ├── ParacetamolRuleForTherapiesParameters.java │ │ │ ├── ParacetamolRuleForTherapyParameters.java │ │ │ ├── ParacetamolRuleParameters.java │ │ │ └── RuleParameters.java │ │ └── result │ │ │ ├── ParacetamolRuleResult.java │ │ │ └── RuleResult.java │ │ ├── service │ │ └── MedicationsService.java │ │ └── task │ │ ├── AdministrationTaskCreateActionEnum.java │ │ ├── AdministrationTaskDef.java │ │ ├── CheckMentalHealthMedsTaskDef.java │ │ ├── CheckNewAllergiesTaskDef.java │ │ ├── DispenseMedicationTaskDef.java │ │ ├── DoctorReviewTaskDef.java │ │ ├── InfusionBagChangeTaskDef.java │ │ ├── MedsTaskDef.java │ │ ├── OxygenTaskDef.java │ │ ├── PerfusionSyringeCompletePreparationTaskDef.java │ │ ├── PerfusionSyringeDispenseMedicationTaskDef.java │ │ ├── PerfusionSyringeStartPreparationTaskDef.java │ │ ├── PerfusionSyringeTaskDef.java │ │ ├── PharmacistReminderTaskDef.java │ │ ├── PharmacistReviewTaskDef.java │ │ ├── SupplyReminderTaskDef.java │ │ ├── SupplyRequestStatus.java │ │ ├── SupplyReviewTaskDef.java │ │ ├── SupplyTaskDef.java │ │ ├── SwitchToOralTaskDef.java │ │ └── TherapyTaskDef.java │ ├── tm-medications-connector_ │ ├── pom.xml │ ├── tm-medications-connector-impl │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── marand │ │ │ │ │ └── thinkmed │ │ │ │ │ └── medications │ │ │ │ │ └── connector │ │ │ │ │ └── impl │ │ │ │ │ ├── demo │ │ │ │ │ └── DemoMedicationsConnector.java │ │ │ │ │ ├── local │ │ │ │ │ ├── eventhandler │ │ │ │ │ │ └── DataChangeEventHandler.java │ │ │ │ │ ├── model │ │ │ │ │ │ ├── ExternalAllergy.java │ │ │ │ │ │ ├── ExternalCareProvider.java │ │ │ │ │ │ ├── ExternalCentralCase.java │ │ │ │ │ │ ├── ExternalCentralCaseDisease.java │ │ │ │ │ │ ├── ExternalDiseaseType.java │ │ │ │ │ │ ├── ExternalEncounter.java │ │ │ │ │ │ ├── ExternalEntity.java │ │ │ │ │ │ ├── ExternalEpisode.java │ │ │ │ │ │ ├── ExternalMedicalStaff.java │ │ │ │ │ │ ├── ExternalOrganization.java │ │ │ │ │ │ ├── ExternalPatient.java │ │ │ │ │ │ ├── ExternalPatientAllergy.java │ │ │ │ │ │ ├── ExternalUser.java │ │ │ │ │ │ ├── ExternalUserCareProviderMember.java │ │ │ │ │ │ ├── NamedExternalEntity.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── ExternalAllergyImpl.java │ │ │ │ │ │ │ ├── ExternalCareProviderImpl.java │ │ │ │ │ │ │ ├── ExternalCentralCaseDiseaseImpl.java │ │ │ │ │ │ │ ├── ExternalCentralCaseImpl.java │ │ │ │ │ │ │ ├── ExternalDiseaseTypeImpl.java │ │ │ │ │ │ │ ├── ExternalEncounterImpl.java │ │ │ │ │ │ │ ├── ExternalEncounterType.java │ │ │ │ │ │ │ ├── ExternalEntityImpl.java │ │ │ │ │ │ │ ├── ExternalEpisodeImpl.java │ │ │ │ │ │ │ ├── ExternalMedicalStaffImpl.java │ │ │ │ │ │ │ ├── ExternalOrganizationImpl.java │ │ │ │ │ │ │ ├── ExternalPatientAllergyImpl.java │ │ │ │ │ │ │ ├── ExternalPatientImpl.java │ │ │ │ │ │ │ ├── ExternalUserCareProviderMemberImpl.java │ │ │ │ │ │ │ ├── ExternalUserImpl.java │ │ │ │ │ │ │ └── NamedExternalEntityImpl.java │ │ │ │ │ └── provider │ │ │ │ │ │ ├── ExternalAliases.java │ │ │ │ │ │ ├── LocalAdtDataProvider.java │ │ │ │ │ │ ├── LocalPatientDataProvider.java │ │ │ │ │ │ └── LocalStaffDataProvider.java │ │ │ │ │ ├── provider │ │ │ │ │ ├── AdtDataProvider.java │ │ │ │ │ ├── AllergiesProvider.java │ │ │ │ │ ├── BloodGlucoseProvider.java │ │ │ │ │ ├── DiseasesProvider.java │ │ │ │ │ ├── EncounterProvider.java │ │ │ │ │ ├── HeightProvider.java │ │ │ │ │ ├── PatientDataProvider.java │ │ │ │ │ ├── PatientDemographicsProvider.java │ │ │ │ │ ├── ProviderBasedMedicationsConnector.java │ │ │ │ │ ├── StaffDataProvider.java │ │ │ │ │ ├── WeightProvider.java │ │ │ │ │ ├── ehr │ │ │ │ │ │ ├── EhrAllergiesProvider.java │ │ │ │ │ │ ├── EhrBloodGlucoseProvider.java │ │ │ │ │ │ ├── EhrDiseasesProvider.java │ │ │ │ │ │ ├── EhrHeightProvider.java │ │ │ │ │ │ └── EhrWeightProvider.java │ │ │ │ │ └── fhir │ │ │ │ │ │ ├── FhirClientFactory.java │ │ │ │ │ │ ├── FhirEncounterProvider.java │ │ │ │ │ │ ├── FhirPatientDemographicsProvider.java │ │ │ │ │ │ └── FhirValidationException.java │ │ │ │ │ └── rest │ │ │ │ │ ├── MedicationsConnectorRestClient.java │ │ │ │ │ └── RestMedicationsConnector.java │ │ │ └── resources │ │ │ │ ├── ac-meds-connector-demo.xml │ │ │ │ ├── ac-meds-connector-provider-based.xml │ │ │ │ ├── ac-meds-connector-rest.xml │ │ │ │ └── com │ │ │ │ └── marand │ │ │ │ └── thinkmed │ │ │ │ └── medications │ │ │ │ └── connector │ │ │ │ └── impl │ │ │ │ └── local │ │ │ │ └── model │ │ │ │ └── impl │ │ │ │ └── ac-hibernate-packages.xml │ │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── marand │ │ │ │ └── thinkmed │ │ │ │ └── medications │ │ │ │ └── connector │ │ │ │ └── impl │ │ │ │ ├── local │ │ │ │ ├── eventhandler │ │ │ │ │ └── DataChangeEventHandlerTest.java │ │ │ │ └── provider │ │ │ │ │ └── impl │ │ │ │ │ ├── LocalAdtDataProviderTest.java │ │ │ │ │ ├── LocalPatientDataProviderTest.java │ │ │ │ │ └── LocalStaffDataProviderTest.java │ │ │ │ └── provider │ │ │ │ └── fhir │ │ │ │ ├── FhirEncounterProviderTest.java │ │ │ │ └── FhirPatientDemographicsProviderTest.java │ │ │ └── resources │ │ │ └── com │ │ │ └── marand │ │ │ └── thinkmed │ │ │ └── medications │ │ │ └── connector │ │ │ └── impl │ │ │ ├── local │ │ │ ├── eventhandler │ │ │ │ ├── DataChangeEventHandlerTest-context.xml │ │ │ │ └── DataChangeEventHandlerTest.xml │ │ │ └── provider │ │ │ │ └── impl │ │ │ │ ├── LocalAdtDataProviderTest-context.xml │ │ │ │ ├── LocalAdtDataProviderTest.xml │ │ │ │ ├── LocalPatientDataProviderTest-context.xml │ │ │ │ ├── LocalPatientDataProviderTest.xml │ │ │ │ ├── LocalStaffDataProviderTest-context.xml │ │ │ │ └── LocalStaffDataProviderTest.xml │ │ │ └── provider │ │ │ └── fhir │ │ │ ├── FhirEncounterProviderTest-context.xml │ │ │ └── FhirPatientDemographicsProviderTest-context.xml │ └── tm-medications-connector │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── marand │ │ └── thinkmed │ │ └── medications │ │ ├── connector │ │ ├── MedicationsConnector.java │ │ └── data │ │ │ └── object │ │ │ ├── AllergiesDto.java │ │ │ ├── AllergiesStatus.java │ │ │ ├── AllergyDto.java │ │ │ ├── BolusQuantityWithTimeDto.java │ │ │ ├── DiseaseDto.java │ │ │ ├── EncounterDto.java │ │ │ ├── EncounterStatus.java │ │ │ ├── EncounterType.java │ │ │ ├── MedicationsCentralCaseDto.java │ │ │ ├── ObservationDto.java │ │ │ ├── ObservationType.java │ │ │ ├── PatientDataForMedicationsDto.java │ │ │ ├── PatientDataForTherapyReportDto.java │ │ │ ├── PatientDemographicsDto.java │ │ │ ├── PatientDemographicsEncounterDto.java │ │ │ ├── PatientDisplayDto.java │ │ │ ├── PatientDisplayWithLocationDto.java │ │ │ ├── PatientDto.java │ │ │ ├── QuantityWithTimeDto.java │ │ │ ├── UserPersonDto.java │ │ │ └── ehr │ │ │ └── EhrAllergiesStatus.java │ │ └── event │ │ ├── AdmitPatientEvent.java │ │ ├── CentralCaseDetails.java │ │ ├── DischargePatientEvent.java │ │ ├── Event.java │ │ ├── EventHandler.java │ │ ├── EventListener.java │ │ ├── PatientDetails.java │ │ └── PatientEvent.java │ ├── tm-medications-report │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── marand │ │ │ └── thinkmed │ │ │ └── medications │ │ │ └── report │ │ │ ├── MedicationsReports.java │ │ │ ├── TherapyReportCreator.java │ │ │ └── impl │ │ │ └── TherapyReportCreatorImpl.java │ │ └── resources │ │ ├── MedicationsReportModule-context.xml │ │ └── reports │ │ ├── TherapyDayScotland.jasper │ │ ├── TherapyDayScotland.jrxml │ │ ├── TherapyDayScotlandA.jasper │ │ ├── TherapyDayScotlandA.jrxml │ │ ├── TherapyDayScotlandA_Complex.jasper │ │ ├── TherapyDayScotlandA_Complex.jrxml │ │ ├── TherapyDayScotlandA_Complex_Medication.jasper │ │ ├── TherapyDayScotlandA_Complex_Medication.jrxml │ │ ├── TherapyDayScotlandA_Complex_Section.jasper │ │ ├── TherapyDayScotlandA_Complex_Section.jrxml │ │ ├── TherapyDayScotlandB.jasper │ │ ├── TherapyDayScotlandB.jrxml │ │ ├── TherapyDayScotlandB_Medication.jasper │ │ ├── TherapyDayScotlandB_Medication.jrxml │ │ ├── TherapyDayScotlandB_Medication_Dose.jasper │ │ ├── TherapyDayScotlandB_Medication_Dose.jrxml │ │ ├── TherapyDayScotland_Legend.jasper │ │ ├── TherapyDayScotland_Legend.jrxml │ │ ├── TherapyDayScotland_Patient.jasper │ │ ├── TherapyDayScotland_Patient.jrxml │ │ └── TherapyDay_Styles.jrtx │ ├── tm-medications-rest │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── marand │ │ │ │ └── thinkmed │ │ │ │ └── medications │ │ │ │ └── rest │ │ │ │ └── MedicationsRestServlet.java │ │ └── resources │ │ │ ├── MedicationsRest-context.xml │ │ │ └── app │ │ │ └── views │ │ │ └── medications │ │ │ └── jquery │ │ │ ├── CurrentTime.js │ │ │ ├── MedicationRuleUtils.js │ │ │ ├── MedicationTimingUtils.js │ │ │ ├── MedicationUtils.js │ │ │ ├── RestApi.js │ │ │ ├── TherapyActions.js │ │ │ ├── TherapyDataSorter.js │ │ │ ├── TherapyDisplayProvider.js │ │ │ ├── TherapyEnums.js │ │ │ ├── TherapyTasksRemindersContainer.js │ │ │ ├── ValueLabel.js │ │ │ ├── common │ │ │ ├── BaseTherapyDetailsContentContainer.js │ │ │ ├── ChangeReasonDataEntryContainer.js │ │ │ ├── DosingPatternValidator.js │ │ │ ├── MedicationDetailsContainer.js │ │ │ ├── MedicationSearchField.js │ │ │ ├── ProtocolSummaryContainer.js │ │ │ ├── RangeField.js │ │ │ ├── SaveMedicationOrderTherapyDisplayProvider.js │ │ │ ├── TemplateTherapyGroupPanel.js │ │ │ ├── TherapyContainer.js │ │ │ ├── TherapyContainerToolbars.js │ │ │ ├── TherapyDetailsContentContainer.js │ │ │ ├── TherapyDetailsLegendContainer.Filters.js │ │ │ ├── TherapyDetailsLegendContainer.js │ │ │ ├── TherapyGroupPanel.js │ │ │ ├── TherapyJsonConverter.js │ │ │ ├── TherapyMedicationDataLoader.js │ │ │ ├── VerticallyTitledComponent.js │ │ │ ├── auditTrail │ │ │ │ └── AuditTrailContainer.js │ │ │ ├── dto │ │ │ │ ├── AdditionalWarnings.js │ │ │ │ ├── BarcodeTaskSearch.js │ │ │ │ ├── Medication.js │ │ │ │ ├── MedicationData.js │ │ │ │ ├── OxygenStartingDevice.js │ │ │ │ ├── OxygenTherapy.js │ │ │ │ ├── Range.js │ │ │ │ ├── SaveMedicationOrder.js │ │ │ │ ├── Therapy.js │ │ │ │ ├── TherapyActionHistory.js │ │ │ │ ├── TherapyAuditTrail.js │ │ │ │ ├── TherapyChange.js │ │ │ │ ├── TherapyChangeReason.js │ │ │ │ ├── TherapyDose.js │ │ │ │ └── TherapyTemplateElement.js │ │ │ └── testing │ │ │ │ └── RenderCoordinator.js │ │ │ ├── demo │ │ │ ├── app.views.medications.demo.View.css │ │ │ └── app.views.medications.demo.View.js │ │ │ ├── documentation │ │ │ ├── TherapyDocumentationApp.module.js │ │ │ ├── TherapyDocumentationController.controller.js │ │ │ ├── TherapyDocumentationView.js │ │ │ ├── TmMedsTherapyDocumentationView.directive.js │ │ │ ├── TmMedsTherapyDocumentationView.template.html │ │ │ ├── common │ │ │ │ ├── document │ │ │ │ │ ├── Document.module.js │ │ │ │ │ ├── DocumentPresenterController.controller.js │ │ │ │ │ ├── TmMedsDocumentPresenter.directive.js │ │ │ │ │ ├── TmMedsDocumentPresenter.template.html │ │ │ │ │ ├── TmMedsEnumTranslationFilter.filter.js │ │ │ │ │ ├── TmMedsPrescriptionLocalDetailsAdditionalInformationValueFilter.filter.js │ │ │ │ │ ├── eerPrescription │ │ │ │ │ │ ├── EerPrescriptionDocumentController.controller.js │ │ │ │ │ │ ├── EerPrescriptionDocumentSectionController.controller.js │ │ │ │ │ │ ├── TmMedsEerPrescriptionDocument.directive.js │ │ │ │ │ │ ├── TmMedsEerPrescriptionDocument.template.html │ │ │ │ │ │ ├── TmMedsEerPrescriptionDocumentSection.directive.js │ │ │ │ │ │ └── TmMedsEerPrescriptionDocumentSection.template.html │ │ │ │ │ ├── externalEerPrescription │ │ │ │ │ │ ├── TmMedsExternalEerPrescriptionDocument.directive.js │ │ │ │ │ │ ├── TmMedsExternalEerPrescriptionDocument.template.html │ │ │ │ │ │ ├── TmMedsExternalEerPrescriptionDocumentController.controller.js │ │ │ │ │ │ ├── TmMedsExternalEerPrescriptionDocumentSection.directive.js │ │ │ │ │ │ ├── TmMedsExternalEerPrescriptionDocumentSection.template.html │ │ │ │ │ │ └── TmMedsExternalEerPrescriptionDocumentSectionController.controller.js │ │ │ │ │ └── mentalHealth │ │ │ │ │ │ ├── MentalHealthDocumentController.controller.js │ │ │ │ │ │ ├── TmMedsMentalHealthDocument.directive.js │ │ │ │ │ │ └── TmMedsMentalHealthDocument.template.html │ │ │ │ ├── documentHeader │ │ │ │ │ ├── DocumentHeader.module.js │ │ │ │ │ ├── DocumentHeaderController.controller.js │ │ │ │ │ ├── TmMedsDocumentHeader.directive.js │ │ │ │ │ ├── TmMedsDocumentHeader.template.html │ │ │ │ │ └── TmMedsNamedExternalNameFilter.filter.js │ │ │ │ ├── ehr │ │ │ │ │ ├── CompositionUidUtils.service.js │ │ │ │ │ └── Ehr.module.js │ │ │ │ └── hub │ │ │ │ │ ├── Hub.module.js │ │ │ │ │ └── HubActionName.constant.js │ │ │ ├── data │ │ │ │ ├── Data.module.js │ │ │ │ ├── DocumentRestApi.service.js │ │ │ │ ├── DocumentService.service.js │ │ │ │ └── models │ │ │ │ │ ├── ExternalPrescriptionPackage.factory.js │ │ │ │ │ ├── ExternalPrescriptionTherapy.factory.js │ │ │ │ │ ├── MentalHealthDocumentContent.factory.js │ │ │ │ │ ├── MentalHealthMedication.factory.js │ │ │ │ │ ├── MentalHealthTemplate.factory.js │ │ │ │ │ ├── PrescriptionDocumentType.constant.js │ │ │ │ │ ├── PrescriptionLocalDetails.factory.js │ │ │ │ │ ├── PrescriptionPackage.factory.js │ │ │ │ │ ├── PrescriptionStatus.constant.js │ │ │ │ │ ├── PrescriptionTherapy.factory.js │ │ │ │ │ ├── Therapy.factory.js │ │ │ │ │ ├── TherapyDocument.factory.js │ │ │ │ │ ├── TherapyDocumentType.constant.js │ │ │ │ │ ├── TherapyDocumentationModels.module.js │ │ │ │ │ └── TherapyDocuments.factory.js │ │ │ ├── externalPrescriptions │ │ │ │ ├── ExternalPrescriptions.module.js │ │ │ │ ├── ExternalPrescriptionsPresenter.service.js │ │ │ │ ├── PrescriptionsDialogController.controller.js │ │ │ │ └── TmMedsExternalPrescriptionsDialog.template.html │ │ │ ├── indexColumn │ │ │ │ ├── IndexColumn.module.js │ │ │ │ ├── ListItemController.controller.js │ │ │ │ ├── TmMedsIndexColumnList.directive.js │ │ │ │ ├── TmMedsIndexColumnList.template.html │ │ │ │ ├── TmMedsIndexColumnListItem.directive.js │ │ │ │ └── TmMedsIndexColumnListItem.template.html │ │ │ ├── multiDocumentColumn │ │ │ │ ├── MultiDocumentColumn.module.js │ │ │ │ ├── TmMedsMultiDocumentColumn.directive.js │ │ │ │ └── TmMedsMultiDocumentColumn.template.html │ │ │ └── singleDocumentColumn │ │ │ │ ├── SingleDocumentColumn.module.js │ │ │ │ ├── TmMedsSingleDocumentColumn.directive.js │ │ │ │ └── TmMedsSingleDocumentColumn.template.html │ │ │ ├── inpatients │ │ │ ├── TherapyTasksInpatientView.css │ │ │ └── TherapyTasksInpatientView.js │ │ │ ├── mentalHealth │ │ │ ├── RouteSelectionContainer.js │ │ │ ├── T2T3BasketContainer.js │ │ │ ├── T2T3BnfMaximumContainer.js │ │ │ ├── T2T3OrderingContainer.js │ │ │ ├── T2T3TherapySelectionColumn.js │ │ │ ├── TherapyContainerToolbars.js │ │ │ └── TherapyGroupPanel.js │ │ │ ├── nurseTasks │ │ │ ├── angularComponents │ │ │ │ ├── app.views.medications.nurseTask.module.js │ │ │ │ ├── controller │ │ │ │ │ └── nurseListGrid.ctrl.js │ │ │ │ ├── directive │ │ │ │ │ ├── aplicationType │ │ │ │ │ │ ├── aplicationType.dir.js │ │ │ │ │ │ └── aplicationType.template.html │ │ │ │ │ ├── applicationPrecondition │ │ │ │ │ │ ├── applicationPrecondition.dir.js │ │ │ │ │ │ └── applicationPrecondition.template.html │ │ │ │ │ ├── nurseTaskList │ │ │ │ │ │ ├── nurseTaskList.dir.js │ │ │ │ │ │ ├── nurseTaskList.template.html │ │ │ │ │ │ ├── nurseTaskListRow.dir.js │ │ │ │ │ │ └── nurseTaskListRow.template.html │ │ │ │ │ └── roomAndBed │ │ │ │ │ │ ├── roomAndBed.dir.js │ │ │ │ │ │ └── roomAndBed.template.html │ │ │ │ ├── filter │ │ │ │ │ └── nurseTask.filter.js │ │ │ │ ├── resources │ │ │ │ │ ├── administrationTasksForCareProviders.resource.js │ │ │ │ │ └── administrationTasksForCareProviders.service.js │ │ │ │ └── service │ │ │ │ │ └── nurseTask.service.js │ │ │ ├── app.views.medications.nurseTasks.View.css │ │ │ └── app.views.medications.nurseTasks.View.js │ │ │ ├── ordering │ │ │ ├── AdministrationPreviewTimeline.js │ │ │ ├── ApplicationPreconditionPane.js │ │ │ ├── BasketContainer.js │ │ │ ├── BnfMaximumPane.js │ │ │ ├── CalculatedDosagePane.js │ │ │ ├── ChangeReasonPane.js │ │ │ ├── CommentIndicationPane.js │ │ │ ├── ControlDrugsSupplyContainer.js │ │ │ ├── ControlDrugsSupplyRowContainer.js │ │ │ ├── DosePane.js │ │ │ ├── DosingFrequencyPane.js │ │ │ ├── DosingPatternPane.js │ │ │ ├── EditPastDaysOfTherapyContainer.js │ │ │ ├── HighRiskMedicationIconsContainer.js │ │ │ ├── LinkTherapyPane.js │ │ │ ├── MedicationDetailsCardPane.js │ │ │ ├── MedicationsOrderingContainer.js │ │ │ ├── MedicationsTitleHeader.js │ │ │ ├── OrderingContainer.js │ │ │ ├── OverdoseContainer.js │ │ │ ├── ParacetamolLimitContainer.js │ │ │ ├── PrescriptionContentExtensionContainer.js │ │ │ ├── RoutesPane.js │ │ │ ├── SaveTemplatePane.js │ │ │ ├── SearchContainer.js │ │ │ ├── TemplatesContainer.js │ │ │ ├── TherapyContainerToolbars.js │ │ │ ├── TherapyDaysContainer.js │ │ │ ├── TherapyIntervalPane.js │ │ │ ├── TherapyNextAdministrationLabelPane.js │ │ │ ├── TherapySaveDatePane.js │ │ │ ├── TherapySupplyContainer.js │ │ │ ├── UniversalDosePane.js │ │ │ ├── UniversalMedicationDataContainer.js │ │ │ ├── WarningOverrideReasonPane.js │ │ │ ├── WarningsContainer.js │ │ │ ├── complex │ │ │ │ ├── ComplexTherapyContainer.js │ │ │ │ ├── ComplexTherapyEditContainer.js │ │ │ │ ├── ComplexTherapyMedicationPane.js │ │ │ │ ├── ComplexVariableRateDataEntryContainer.js │ │ │ │ ├── ComplexVariableRateRowContainer.js │ │ │ │ ├── HeparinPane.js │ │ │ │ ├── InfusionRateFormulaUnitPane.js │ │ │ │ ├── InfusionRatePane.js │ │ │ │ ├── InfusionRateTypePane.js │ │ │ │ ├── UniversalComplexTherapyContainer.js │ │ │ │ └── VolumeSumPane.js │ │ │ ├── oxygen │ │ │ │ ├── OxygenFlowRateValidator.js │ │ │ │ ├── OxygenRouteContainer.js │ │ │ │ ├── OxygenSaturationInputContainer.js │ │ │ │ ├── OxygenTherapyContainer.js │ │ │ │ └── OxygenTherapyEditDataEntryContainer.js │ │ │ └── simple │ │ │ │ ├── ProtocolOptionsContainer.js │ │ │ │ ├── SimpleTherapyContainer.js │ │ │ │ ├── SimpleTherapyEditContainer.js │ │ │ │ ├── SimpleVariableDoseDaysPane.js │ │ │ │ ├── SimpleVariableDosePane.js │ │ │ │ └── UniversalSimpleTherapyContainer.js │ │ │ ├── outpatient │ │ │ ├── EERContentExtensionContainer.js │ │ │ └── OutpatientOrderingContainer.js │ │ │ ├── pharmacists │ │ │ ├── ColumnContainer.js │ │ │ ├── ConfirmAllTherapiesPlaceholderContainer.js │ │ │ ├── DailyReviewsContainer.js │ │ │ ├── DailyReviewsContainerHeader.js │ │ │ ├── ProblemDescriptionEditContainer.js │ │ │ ├── ProblemDescriptionViewContainer.js │ │ │ ├── ResizingTextArea.js │ │ │ ├── ReviewContainer.js │ │ │ ├── ReviewContainerEditContentCard.js │ │ │ ├── ReviewContainerHeader.js │ │ │ ├── ReviewContainerViewContentCard.js │ │ │ ├── ReviewView.js │ │ │ ├── TherapyContainer.js │ │ │ ├── TherapyContainerToolbars.js │ │ │ └── dto │ │ │ │ ├── PharmacistMedicationReview.js │ │ │ │ └── TherapyProblemDescription.js │ │ │ ├── pharmacistsTasks │ │ │ ├── angularComponents │ │ │ │ ├── app.views.medications.pharmacistsTask.module.js │ │ │ │ ├── controller │ │ │ │ │ ├── syringesList.ctrl.js │ │ │ │ │ ├── thinkGrid.ctrl.js │ │ │ │ │ └── thinkGrid.service.js │ │ │ │ ├── dataTable │ │ │ │ │ ├── dataTable.css │ │ │ │ │ ├── dataTable.helpers.js │ │ │ │ │ ├── dataTable.helpers_new.js │ │ │ │ │ ├── dataTable.tm.overrides.css │ │ │ │ │ ├── material.css │ │ │ │ │ └── material.tm.overrides.css │ │ │ │ ├── directive │ │ │ │ │ ├── careProvider │ │ │ │ │ │ ├── careProvider.dir.js │ │ │ │ │ │ └── careProvider.template.html │ │ │ │ │ ├── dateTime │ │ │ │ │ │ ├── dateTime.dir.js │ │ │ │ │ │ └── dateTime.template.html │ │ │ │ │ ├── dateTimeUser │ │ │ │ │ │ ├── dateTimeUser.dir.js │ │ │ │ │ │ └── dateTimeUser.template.html │ │ │ │ │ ├── dispenseRequested │ │ │ │ │ │ ├── dispenseRequested.dir.js │ │ │ │ │ │ └── dispenseRequested.template.html │ │ │ │ │ ├── dueDate │ │ │ │ │ │ ├── dueDate.dir.js │ │ │ │ │ │ └── dueDate.template.html │ │ │ │ │ ├── flex │ │ │ │ │ │ ├── flexItem.dir.js │ │ │ │ │ │ └── flexLayout.dir.js │ │ │ │ │ ├── moreDropDownMenu │ │ │ │ │ │ ├── moreDropDownMenu.dir.js │ │ │ │ │ │ └── moreDropDownMenu.template.html │ │ │ │ │ ├── nextDose │ │ │ │ │ │ ├── nextDose.dir.js │ │ │ │ │ │ └── nextDose.template.html │ │ │ │ │ ├── openCloseFilter │ │ │ │ │ │ ├── openCloseFilter.dir.js │ │ │ │ │ │ └── openCloseFilter.template.html │ │ │ │ │ ├── pharmacyReview │ │ │ │ │ │ ├── pharmacyReview.dir.js │ │ │ │ │ │ └── pharmacyReview.template.html │ │ │ │ │ ├── reminderNote │ │ │ │ │ │ ├── reminderNote.dir.js │ │ │ │ │ │ └── reminderNote.template.html │ │ │ │ │ ├── resupplyForm │ │ │ │ │ │ ├── resupplyForm.dir.js │ │ │ │ │ │ └── resupplyForm.template.html │ │ │ │ │ ├── supplyStatus │ │ │ │ │ │ ├── supplyStatus.dir.js │ │ │ │ │ │ └── supplyStatus.template.html │ │ │ │ │ ├── syringeOverview │ │ │ │ │ │ ├── syringeOverview.dir.js │ │ │ │ │ │ └── syringeOverview.template.html │ │ │ │ │ ├── syringeProgress │ │ │ │ │ │ ├── syringeProgress.dir.js │ │ │ │ │ │ └── syringeProgress.template.html │ │ │ │ │ ├── syringeTaskMenu │ │ │ │ │ │ ├── syringeTaskMenuItem.dir.js │ │ │ │ │ │ └── syringeTaskMenuItem.template.html │ │ │ │ │ ├── syringesFilterMenu │ │ │ │ │ │ ├── syringesFilterMenu.dir.js │ │ │ │ │ │ └── syringesFilterMenu.template.html │ │ │ │ │ ├── syringesList │ │ │ │ │ │ ├── syringesList.dir.js │ │ │ │ │ │ ├── syringesList.template.html │ │ │ │ │ │ ├── syringesListRow.dir.js │ │ │ │ │ │ └── syringesListRow.template.html │ │ │ │ │ ├── taskPrinted │ │ │ │ │ │ ├── taskPrinted.dir.js │ │ │ │ │ │ └── taskPrinted.template.html │ │ │ │ │ ├── therapyAction │ │ │ │ │ │ ├── therapyAction.dir.js │ │ │ │ │ │ └── therapyAction.template.html │ │ │ │ │ ├── therapyModificationType │ │ │ │ │ │ ├── therapyModificationType.dir.js │ │ │ │ │ │ └── therapyModificationType.template.html │ │ │ │ │ ├── therapyType │ │ │ │ │ │ ├── therapyType.dir.js │ │ │ │ │ │ └── therapyType.template.html │ │ │ │ │ └── therapyTypeCell │ │ │ │ │ │ ├── therapyTypeCell.dir.js │ │ │ │ │ │ └── therapyTypeCell.template.html │ │ │ │ ├── filter │ │ │ │ │ ├── pharmacistTasks.filter.js │ │ │ │ │ └── syringeProgressTaskType.filter.js │ │ │ │ ├── resources │ │ │ │ │ ├── supply.resource.js │ │ │ │ │ ├── supply.service.js │ │ │ │ │ └── taskAction.service.js │ │ │ │ └── service │ │ │ │ │ └── pharmacistsTask.service.js │ │ │ ├── app.views.medications.pharmacistsTasks.View.css │ │ │ └── app.views.medications.pharmacistsTasks.View.js │ │ │ ├── proxy │ │ │ ├── app.views.medications.proxy.ProxyTherapyView.css │ │ │ └── app.views.medications.proxy.ProxyTherapyView.js │ │ │ ├── reconciliation │ │ │ ├── AdmissionInpatientMedReconciliationEntryContainer.js │ │ │ ├── AdmissionMedReconciliationContainer.js │ │ │ ├── BasketContainer.js │ │ │ ├── DischargeMedReconciliationEntryContainer.js │ │ │ ├── DischargeMedsReconciliationContainer.js │ │ │ ├── InpatientMedReconciliationContainer.js │ │ │ ├── MedicationOnDischargeTherapyDisplayProvider.js │ │ │ ├── MedicineReconciliationContainer.js │ │ │ ├── MedicineReconciliationDialogButtons.js │ │ │ ├── SummaryRowContainer.js │ │ │ ├── SummaryView.js │ │ │ ├── SuspendAdmissionTherapyContainer.js │ │ │ ├── TherapyContainerToolbars.js │ │ │ ├── TherapySelectionColumn.js │ │ │ └── dto │ │ │ │ ├── DischargeSourceMedication.js │ │ │ │ ├── MedicationGroup.js │ │ │ │ ├── MedicationGroupTherapy.js │ │ │ │ ├── MedicationOnAdmission.js │ │ │ │ ├── MedicationOnAdmissionGroup.js │ │ │ │ ├── MedicationOnDischarge.js │ │ │ │ ├── MedicationOnDischargeGroup.js │ │ │ │ ├── SourceMedication.js │ │ │ │ └── SummaryRowTherapyData.js │ │ │ ├── therapy │ │ │ ├── GridTherapyContainerToolbar.js │ │ │ ├── PharmacistReviewPane.js │ │ │ ├── PharmacistReviewPaneReviewHeader.js │ │ │ ├── ReferenceWeightPane.js │ │ │ ├── SelfAdministrationContainer.js │ │ │ ├── ShowExternalPrescriptionsDataEntryContainer.js │ │ │ ├── TherapyAuthority.js │ │ │ ├── TherapyFlowGrid.js │ │ │ ├── TherapyOverviewHeader.js │ │ │ ├── TherapyView.css │ │ │ └── TherapyView.js │ │ │ ├── timeline │ │ │ ├── AdministrationWarningContainer.js │ │ │ ├── DoctorsCommentDataEntryContainer.js │ │ │ ├── PerfusionSyringeDataEntryContainer.js │ │ │ ├── RescheduleTasksContainer.js │ │ │ ├── TherapyAdministrationContainer.js │ │ │ ├── TherapyAdministrationDetailsContentContainer.js │ │ │ ├── TherapyTimeline.js │ │ │ ├── TherapyTimelineAdditionalWarningsDialogContainer.js │ │ │ ├── TherapyTimelineContainer.js │ │ │ ├── TherapyTimelineTooltip.js │ │ │ ├── TherapyTimelineUtils.js │ │ │ ├── TimelineTherapyContainerToolbar.js │ │ │ ├── WitnessPane.js │ │ │ ├── administration │ │ │ │ ├── AdministrationWarningsProvider.js │ │ │ │ ├── MedicationBarcodeContainer.js │ │ │ │ ├── OxygenStartingDeviceDataEntryContainer.js │ │ │ │ ├── PlannedDoseTimeValidator.js │ │ │ │ └── TherapyAdministrationDialogBuilder.js │ │ │ └── titration │ │ │ │ ├── BaseApplicationRowContainer.js │ │ │ │ ├── ChartHelpers.js │ │ │ │ ├── DoseApplicationRowContainer.js │ │ │ │ ├── MeasurementResultRowContainer.js │ │ │ │ ├── RateApplicationRowContainer.js │ │ │ │ ├── TherapyDoseHistoryRowContainer.js │ │ │ │ ├── TitrationBasedAdministrationDataEntryContainer.js │ │ │ │ ├── TitrationDataLoader.js │ │ │ │ ├── TitrationDialogBuilder.js │ │ │ │ └── dto │ │ │ │ ├── QuantityWithTime.js │ │ │ │ ├── TherapyForTitration.js │ │ │ │ └── Titration.js │ │ │ └── warning │ │ │ ├── Monograph.css │ │ │ ├── SimpleWarningsContainer.js │ │ │ ├── TherapyWarnings.css │ │ │ └── WarningsHelpers.js │ │ └── test │ │ └── java │ │ └── com │ │ └── marand │ │ └── thinkmed │ │ └── medications │ │ └── rest │ │ └── TherapyEnumsTest.java │ └── tm-medications-server │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── marand │ │ │ └── thinkmed │ │ │ ├── medications │ │ │ ├── administration │ │ │ │ ├── AdministrationFromEhrConverter.java │ │ │ │ ├── AdministrationHandler.java │ │ │ │ ├── AdministrationProvider.java │ │ │ │ ├── AdministrationSaver.java │ │ │ │ ├── AdministrationTaskConverter.java │ │ │ │ ├── AdministrationTaskCreator.java │ │ │ │ ├── AdministrationToEhrConverter.java │ │ │ │ ├── AdministrationUtils.java │ │ │ │ └── impl │ │ │ │ │ ├── AdministrationFromEhrConverterImpl.java │ │ │ │ │ ├── AdministrationHandlerImpl.java │ │ │ │ │ ├── AdministrationProviderImpl.java │ │ │ │ │ ├── AdministrationSaverImpl.java │ │ │ │ │ ├── AdministrationTaskConverterImpl.java │ │ │ │ │ ├── AdministrationTaskCreatorImpl.java │ │ │ │ │ ├── AdministrationToEhrConverterImpl.java │ │ │ │ │ └── AdministrationUtilsImpl.java │ │ │ ├── admission │ │ │ │ ├── MedicationOnAdmissionHandler.java │ │ │ │ └── impl │ │ │ │ │ └── MedicationOnAdmissionHandlerImpl.java │ │ │ ├── allergies │ │ │ │ ├── AllergiesHandler.java │ │ │ │ └── impl │ │ │ │ │ └── AllergiesHandlerImpl.java │ │ │ ├── audittrail │ │ │ │ ├── TherapyAuditTrailProvider.java │ │ │ │ └── impl │ │ │ │ │ └── TherapyAuditTrailProviderImpl.java │ │ │ ├── automatic │ │ │ │ ├── AdministrationAutoTaskConfirmer.java │ │ │ │ ├── AdministrationAutoTaskConfirmerHandler.java │ │ │ │ ├── AdministrationAutoTaskConfirmerImpl.java │ │ │ │ ├── AdministrationAutoTaskCreator.java │ │ │ │ ├── AdministrationAutoTaskCreatorHandler.java │ │ │ │ └── impl │ │ │ │ │ ├── AdministrationAutoTaskConfirmerHandlerImpl.java │ │ │ │ │ └── AdministrationAutoTaskCreatorHandlerImpl.java │ │ │ ├── b2b │ │ │ │ └── MedicationsConnectorUtils.java │ │ │ ├── barcode │ │ │ │ └── BarcodeTaskFinder.java │ │ │ ├── batch │ │ │ │ ├── TherapyBatchActionHandler.java │ │ │ │ └── impl │ │ │ │ │ └── TherapyBatchActionHandlerImpl.java │ │ │ ├── business │ │ │ │ ├── LabelDisplayValuesProvider.java │ │ │ │ ├── MedicationsBo.java │ │ │ │ ├── MedicationsFinder.java │ │ │ │ ├── MedicationsFinderImpl.java │ │ │ │ ├── data │ │ │ │ │ ├── TherapyDocumentationData.java │ │ │ │ │ ├── TherapyLinkType.java │ │ │ │ │ └── TherapySimilarityType.java │ │ │ │ ├── impl │ │ │ │ │ ├── DefaultMedicationsBo.java │ │ │ │ │ ├── LabelDisplayValuesProviderImpl.java │ │ │ │ │ └── TherapyDisplayProvider.java │ │ │ │ ├── mapper │ │ │ │ │ └── MedicationHolderDtoMapper.java │ │ │ │ └── util │ │ │ │ │ ├── MedicationsEhrUtils.java │ │ │ │ │ ├── TherapyIdUtils.java │ │ │ │ │ └── TherapyUnitsConverter.java │ │ │ ├── change │ │ │ │ ├── TherapyChangeCalculator.java │ │ │ │ ├── TherapyChangeRecorder.java │ │ │ │ └── impl │ │ │ │ │ └── TherapyChangeCalculatorImpl.java │ │ │ ├── charting │ │ │ │ ├── AutomaticChartingType.java │ │ │ │ ├── NormalInfusionAutomaticChartingDto.java │ │ │ │ ├── SelfAdminAutomaticChartingDto.java │ │ │ │ └── TherapyAutomaticChartingDto.java │ │ │ ├── converter │ │ │ │ └── therapy │ │ │ │ │ ├── ComplexMedicationFromEhrConverter.java │ │ │ │ │ ├── ComplexMedicationToEhrConverter.java │ │ │ │ │ ├── ConstantComplexMedicationFromEhrConverter.java │ │ │ │ │ ├── ConstantComplexMedicationToEhrConverter.java │ │ │ │ │ ├── ConstantSimpleMedicationFromEhrConverter.java │ │ │ │ │ ├── ConstantSimpleMedicationToEhrConverter.java │ │ │ │ │ ├── MedicationConverterSelector.java │ │ │ │ │ ├── MedicationFromEhrConverter.java │ │ │ │ │ ├── MedicationToEhrConverter.java │ │ │ │ │ ├── OxygenMedicationFromEhrConverter.java │ │ │ │ │ ├── OxygenMedicationToEhrConverter.java │ │ │ │ │ ├── SimpleMedicationFromEhrConverter.java │ │ │ │ │ ├── SimpleMedicationToEhrConverter.java │ │ │ │ │ ├── VariableComplexMedicationFromEhrConverter.java │ │ │ │ │ ├── VariableComplexMedicationToEhrConverter.java │ │ │ │ │ ├── VariableSimpleMedicationFromEhrConverter.java │ │ │ │ │ └── VariableSimpleMedicationToEhrConverter.java │ │ │ ├── dao │ │ │ │ ├── MedicationsDao.java │ │ │ │ ├── hibernate │ │ │ │ │ └── HibernateMedicationsDao.java │ │ │ │ └── openehr │ │ │ │ │ ├── CompositionNotFoundException.java │ │ │ │ │ └── MedicationsOpenEhrDao.java │ │ │ ├── discharge │ │ │ │ ├── MedicationOnDischargeHandler.java │ │ │ │ └── impl │ │ │ │ │ └── MedicationOnDischargeHandlerImpl.java │ │ │ ├── document │ │ │ │ ├── TherapyDocumentProvider.java │ │ │ │ ├── TherapyDocumentProviderPlugin.java │ │ │ │ └── impl │ │ │ │ │ ├── MentalHealthDocumentProviderPluginImpl.java │ │ │ │ │ └── TherapyDocumentProviderImpl.java │ │ │ ├── dto │ │ │ │ ├── AutomaticAdministrationTaskCreatorDto.java │ │ │ │ └── MedicationDataForTherapyDto.java │ │ │ ├── event │ │ │ │ └── hl7 │ │ │ │ │ ├── Converter.java │ │ │ │ │ ├── Hl7EventListener.java │ │ │ │ │ └── v251 │ │ │ │ │ └── converter │ │ │ │ │ ├── AdtA01Converter.java │ │ │ │ │ └── AdtA03Converter.java │ │ │ ├── infusion │ │ │ │ ├── AdministrationCandidateDo.java │ │ │ │ ├── InfusionBagHandler.java │ │ │ │ ├── InfusionBagTaskHandler.java │ │ │ │ ├── InfusionBagTaskProvider.java │ │ │ │ └── impl │ │ │ │ │ ├── InfusionBagHandlerImpl.java │ │ │ │ │ ├── InfusionBagRecalculateEventHandler.java │ │ │ │ │ ├── InfusionBagTaskHandlerImpl.java │ │ │ │ │ └── InfusionBagTaskProviderImpl.java │ │ │ ├── ingredient │ │ │ │ ├── IngredientCalculator.java │ │ │ │ └── impl │ │ │ │ │ └── IngredientCalculatorImpl.java │ │ │ ├── mapper │ │ │ │ ├── DoseFormDtoMapper.java │ │ │ │ └── InstructionToAdministrationMapper.java │ │ │ ├── mentalhealth │ │ │ │ ├── MentalHealthFormHandler.java │ │ │ │ ├── MentalHealthFormProvider.java │ │ │ │ └── impl │ │ │ │ │ ├── MentalHealthFormHandlerImpl.java │ │ │ │ │ └── MentalHealthFormProviderImpl.java │ │ │ ├── model │ │ │ │ └── impl │ │ │ │ │ ├── ActionReasonImpl.java │ │ │ │ │ ├── AtcClassificationImpl.java │ │ │ │ │ ├── DoseFormImpl.java │ │ │ │ │ ├── MedicationBasicUnitImpl.java │ │ │ │ │ ├── MedicationCustomGroupImpl.java │ │ │ │ │ ├── MedicationCustomGroupMemberImpl.java │ │ │ │ │ ├── MedicationExternalImpl.java │ │ │ │ │ ├── MedicationFormularyImpl.java │ │ │ │ │ ├── MedicationGenericImpl.java │ │ │ │ │ ├── MedicationImpl.java │ │ │ │ │ ├── MedicationIndicationImpl.java │ │ │ │ │ ├── MedicationIndicationLinkImpl.java │ │ │ │ │ ├── MedicationIngredientImpl.java │ │ │ │ │ ├── MedicationIngredientLinkImpl.java │ │ │ │ │ ├── MedicationRouteImpl.java │ │ │ │ │ ├── MedicationRouteLinkImpl.java │ │ │ │ │ ├── MedicationRouteRelationImpl.java │ │ │ │ │ ├── MedicationTypeImpl.java │ │ │ │ │ ├── MedicationVersionImpl.java │ │ │ │ │ ├── MedicationWarningImpl.java │ │ │ │ │ ├── MedicationsExternalCrossTabImpl.java │ │ │ │ │ ├── MentalHealthTemplateImpl.java │ │ │ │ │ ├── MentalHealthTemplateMemberImpl.java │ │ │ │ │ ├── PatientTherapyLastLinkNameImpl.java │ │ │ │ │ ├── TherapyChangedImpl.java │ │ │ │ │ ├── TherapyTemplateElementImpl.java │ │ │ │ │ └── TherapyTemplateImpl.java │ │ │ ├── overview │ │ │ │ ├── OverviewContentProvider.java │ │ │ │ └── impl │ │ │ │ │ └── OverviewContentProviderImpl.java │ │ │ ├── pharmacist │ │ │ │ ├── PharmacistReviewProvider.java │ │ │ │ ├── PharmacistReviewSaver.java │ │ │ │ ├── PharmacistTaskCreator.java │ │ │ │ ├── PharmacistTaskHandler.java │ │ │ │ ├── PharmacistTaskProvider.java │ │ │ │ ├── PharmacistUtils.java │ │ │ │ ├── PharmacySupplyProcessHandler.java │ │ │ │ ├── PreparePerfusionSyringeProcessHandler.java │ │ │ │ ├── converter │ │ │ │ │ ├── PharmacistReviewFromEhrConverter.java │ │ │ │ │ ├── PharmacistReviewToEhrConverter.java │ │ │ │ │ ├── TherapyProblemDescriptionConvertDto.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── PharmacistReviewFromEhrConverterImpl.java │ │ │ │ │ │ └── PharmacistReviewToEhrConverterImpl.java │ │ │ │ └── impl │ │ │ │ │ ├── PharmacistReviewProviderImpl.java │ │ │ │ │ ├── PharmacistReviewSaverImpl.java │ │ │ │ │ ├── PharmacistTaskCreatorImpl.java │ │ │ │ │ ├── PharmacistTaskHandlerImpl.java │ │ │ │ │ ├── PharmacistTaskProviderImpl.java │ │ │ │ │ ├── PharmacySupplyProcessHandlerImpl.java │ │ │ │ │ └── PreparePerfusionSyringeProcessHandlerImpl.java │ │ │ ├── prescription │ │ │ │ ├── PrescriptionHandler.java │ │ │ │ └── impl │ │ │ │ │ ├── DefaultPrescriptionHandlerImpl.java │ │ │ │ │ └── PrescriptionHandlerImpl.java │ │ │ ├── reconciliation │ │ │ │ ├── MedicationReconciliationHandler.java │ │ │ │ └── impl │ │ │ │ │ └── MedicationReconciliationHandlerImpl.java │ │ │ ├── report │ │ │ │ └── TherapyReportDataProvider.java │ │ │ ├── rule │ │ │ │ ├── MedicationRule.java │ │ │ │ ├── MedicationRuleHandler.java │ │ │ │ └── impl │ │ │ │ │ ├── MedicationRuleHandlerImpl.java │ │ │ │ │ └── ParacetamolRule.java │ │ │ ├── service │ │ │ │ └── impl │ │ │ │ │ ├── MedicationsServiceEvents.java │ │ │ │ │ └── MedicationsServiceImpl.java │ │ │ ├── task │ │ │ │ ├── MedicationsTasksHandler.java │ │ │ │ ├── MedicationsTasksProvider.java │ │ │ │ ├── TasksRescheduler.java │ │ │ │ ├── TherapyTaskUtils.java │ │ │ │ └── impl │ │ │ │ │ ├── MedicationsTasksHandlerImpl.java │ │ │ │ │ ├── MedicationsTasksProviderImpl.java │ │ │ │ │ └── TasksReschedulerImpl.java │ │ │ ├── test │ │ │ │ └── MedicationsTestUtils.java │ │ │ ├── therapy │ │ │ │ ├── TherapyCacheInvalidator.java │ │ │ │ ├── TherapyUpdater.java │ │ │ │ └── impl │ │ │ │ │ ├── TherapyCacheInvalidatorImpl.java │ │ │ │ │ └── TherapyUpdaterImpl.java │ │ │ ├── titration │ │ │ │ ├── TitrationDataProvider.java │ │ │ │ └── impl │ │ │ │ │ └── TitrationDataProviderImpl.java │ │ │ ├── valueholder │ │ │ │ ├── MedicationRoutesValueHolder.java │ │ │ │ └── MedicationsValueHolder.java │ │ │ └── warnings │ │ │ │ ├── MentalHealthWarningsHandler.java │ │ │ │ ├── TherapyWarningsProvider.java │ │ │ │ └── additional │ │ │ │ ├── AdditionalWarningsActionHandler.java │ │ │ │ ├── AdditionalWarningsDelegator.java │ │ │ │ ├── AdditionalWarningsProvider.java │ │ │ │ └── impl │ │ │ │ ├── AdditionalWarningsActionHandlerImpl.java │ │ │ │ ├── AdditionalWarningsDelegatorImpl.java │ │ │ │ ├── AllergiesAdditionalWarningsProvider.java │ │ │ │ ├── MentalHealthAdditionalWarningsProvider.java │ │ │ │ └── MentalHealthWarningsHandlerImpl.java │ │ │ ├── patient │ │ │ ├── PatientDataProvider.java │ │ │ └── impl │ │ │ │ └── PatientDataProviderImpl.java │ │ │ └── therapy │ │ │ └── report │ │ │ └── impl │ │ │ └── TherapyReportDataProviderImpl.java │ └── resources │ │ ├── Medications-standalone-context.xml │ │ ├── MedicationsBusiness-context.xml │ │ ├── MedicationsDao-context.xml │ │ ├── MedicationsModule-context.xml │ │ ├── MedicationsProcessModule-context.xml │ │ ├── MedicationsService-context.xml │ │ ├── MedicationsServiceExporter-context.xml │ │ ├── MedicationsStandaloneServer-context.xml-TEMPLATE │ │ ├── MedicationsWarnings-context.xml │ │ ├── TherapyAutomaticJob-context.xml │ │ ├── medications-standalone.properties │ │ ├── medications.properties-TEMPLATE │ │ └── password.properties-TEMPLATE │ └── test │ ├── java │ └── com │ │ └── marand │ │ └── thinkmed │ │ ├── medications │ │ ├── MedicationsTestDictionary.java │ │ ├── administration │ │ │ └── impl │ │ │ │ ├── AdministrationFromEhrConverterTest.java │ │ │ │ ├── AdministrationTaskConverterTest.java │ │ │ │ └── AdministrationTaskCreatorTest.java │ │ ├── admission │ │ │ └── impl │ │ │ │ └── MedicationOnAdmissionHandlerTest.java │ │ ├── audittrail │ │ │ └── impl │ │ │ │ └── TherapyAuditTrailProviderTest.java │ │ ├── automatic │ │ │ └── AdministrationAutoTaskConfirmerTest.java │ │ ├── barcode │ │ │ └── BarcodeTaskFinderTest.java │ │ ├── batch │ │ │ └── impl │ │ │ │ └── TherapyBatchActionHandlerTest.java │ │ ├── business │ │ │ ├── MedicationsFinderTest.java │ │ │ ├── impl │ │ │ │ ├── DefaultMedicationsBoTest.java │ │ │ │ └── TherapyDisplayProviderTest.java │ │ │ └── util │ │ │ │ └── TherapyIdUtilTest.java │ │ ├── change │ │ │ └── impl │ │ │ │ └── TherapyChangeCalculatorTest.java │ │ ├── dao │ │ │ └── hibernate │ │ │ │ └── HibernateMedicationsDaoTest.java │ │ ├── document │ │ │ └── impl │ │ │ │ ├── MentalHealthDocumentProviderPluginTest.java │ │ │ │ └── TherapyDocumentProviderTest.java │ │ ├── dto │ │ │ ├── HourMinuteDtoTest.java │ │ │ └── TherapyDtoTest.java │ │ ├── infusion │ │ │ └── impl │ │ │ │ └── InfusionBagHandlerTest.java │ │ ├── ingredient │ │ │ └── impl │ │ │ │ └── IngredientCalculatorTest.java │ │ ├── mentalhealth │ │ │ └── impl │ │ │ │ └── MentalHealthFormHandlerTest.java │ │ ├── overview │ │ │ └── impl │ │ │ │ └── OverviewContentProviderTest.java │ │ ├── reconciliation │ │ │ └── impl │ │ │ │ └── MedicationReconciliationHandlerTest.java │ │ ├── rule │ │ │ └── impl │ │ │ │ └── ParacetamolRuleTest.java │ │ ├── task │ │ │ └── impl │ │ │ │ ├── MedicationsTasksHandlerTest.java │ │ │ │ ├── MedicationsTasksProviderTest.java │ │ │ │ └── PharmacistTaskProviderTest.java │ │ ├── titration │ │ │ └── TitrationDataProviderTest.java │ │ └── warnings │ │ │ ├── TherapyWarningsProviderTest.java │ │ │ ├── additional │ │ │ └── impl │ │ │ │ └── MentalHealthAdditionalWarningsProviderTest.java │ │ │ └── impl │ │ │ └── AllergiesAdditionalWarningsProviderTest.java │ │ └── patient │ │ └── impl │ │ └── PatientDataProviderTest.java │ └── resources │ ├── MedicationsTestDictionary.properties │ ├── MedicationsTestDictionary_en.properties │ ├── MedicationsTestDictionary_sl.properties │ └── com │ └── marand │ └── thinkmed │ └── medications │ ├── ac-hibernate-packages.xml │ ├── automatic │ └── AdministrationAutoTaskConfirmerTest-context.xml │ ├── dao │ └── hibernate │ │ ├── HibernateMedicationsDaoTest-context.xml │ │ ├── HibernateMedicationsDaoTest.testCustomGroups.xml │ │ ├── HibernateMedicationsDaoTest.testFindSimilarMedications.xml │ │ ├── HibernateMedicationsDaoTest.testGetDoseFormByCode.xml │ │ ├── HibernateMedicationsDaoTest.testGetDoseForms.xml │ │ ├── HibernateMedicationsDaoTest.testGetMedicationBasicUnits.xml │ │ ├── HibernateMedicationsDaoTest.testGetRoutes.xml │ │ ├── HibernateMedicationsDaoTest.testGetTherapyTemplates.xml │ │ ├── HibernateMedicationsDaoTest.testLoadMedicationWarnings.xml │ │ ├── HibernateMedicationsDaoTest.testLoadMedicationsMap.xml │ │ ├── HibernateMedicationsDaoTest.testMedicationsTree.xml │ │ └── HibernateMedicationsDaoTest.xml │ └── overview │ └── impl │ └── OverviewContentProviderTest-context.xml ├── smart ├── pom.xml └── src │ └── main │ └── webapp │ ├── WEB-INF │ └── web.xml │ ├── bp_centiles │ ├── css │ │ ├── bpc-print.css │ │ ├── bpc-print.less │ │ ├── bpc-screen.css │ │ └── themes │ │ │ └── custom │ │ │ ├── images │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ │ ├── ui-bg_glass_40_295d70_1x400.png │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ │ ├── ui-bg_inset-soft_30_c9c9c9_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery-ui-1.8.20.custom.css │ │ │ └── jquery-ui.css │ ├── icon.png │ ├── images │ │ ├── ajax-loader.gif │ │ ├── bpc-new.png │ │ ├── bpc-short-term-help.png │ │ ├── bpc-short-term-help.psd │ │ ├── i.png │ │ ├── print.png │ │ ├── print2.png │ │ └── smart-logo.png │ ├── index.html │ ├── js │ │ ├── bpc-config.js │ │ ├── bpc-data.js │ │ ├── bpc-filters.js │ │ ├── bpc-graph.js │ │ ├── bpc-localizations.js │ │ ├── bpc-print.js │ │ ├── bpc-ui.js │ │ ├── cdc_height_tables.js │ │ ├── lib │ │ │ ├── jquery-1.7.2.min.js │ │ │ ├── jquery-jtemplates.js │ │ │ ├── jquery-ui-1.8.20.custom.min.js │ │ │ ├── jquery-ui.js │ │ │ ├── jquery.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── raphael.js │ │ │ └── xdate.js │ │ ├── nih_bp_tables.js │ │ ├── popup.js │ │ ├── print │ │ │ ├── bpc-graph.js │ │ │ ├── bpc-long-graph.js │ │ │ ├── bpc-print-config.js │ │ │ ├── bpc-short-graph.js │ │ │ └── bpc-time-iterator.js │ │ └── util.js │ ├── print.html │ ├── resources │ │ ├── derive_height_times.html │ │ └── derive_height_times.js │ └── smart_manifest.json │ ├── cardio_risk_viz │ ├── 3001.xml │ ├── draw_visualization.js │ ├── g.raphael.js │ ├── icon.png │ ├── images │ │ ├── doctor.png │ │ ├── icon.png │ │ ├── needle.png │ │ ├── runner.png │ │ └── smoker.png │ ├── index.html │ ├── jquery.min.js │ ├── load_data.js │ ├── raphael-min.js │ ├── raphael.js │ ├── readme.txt │ └── smart_manifest.json │ ├── got_statins │ ├── icon.png │ ├── index.html │ ├── smart_manifest.json │ └── sparql.js │ ├── growth_charts │ ├── README.md │ ├── about-dialog.html │ ├── add_edit_dataentry.html │ ├── annotations.html │ ├── css │ │ ├── about-dialog.css │ │ ├── gc-pview.css │ │ ├── gc-pview2.css │ │ ├── gc-screen.css │ │ ├── preferences-editor.css │ │ ├── print.css │ │ ├── reset.css │ │ ├── style.css │ │ └── style.less │ ├── img │ │ ├── add-chart-btn-right.png │ │ ├── close-chart-btn-right.png │ │ ├── close-dialog-btn.png │ │ ├── close.png │ │ ├── dash-dark.png │ │ ├── dash-white.png │ │ ├── icon.png │ │ ├── icons.fw.png │ │ ├── icons.png │ │ ├── info.fw.png │ │ ├── info.png │ │ ├── mock │ │ │ ├── mini-chart.png │ │ │ ├── panel.png │ │ │ ├── toggle-view1.png │ │ │ ├── toggle-view2.png │ │ │ ├── top-bar1.png │ │ │ └── top-bar2.png │ │ ├── mode-bg.png │ │ ├── page.png │ │ ├── print.png │ │ ├── problem-pattern-all.fw.png │ │ ├── problem-pattern-blue.png │ │ ├── problem-pattern-green.png │ │ ├── problem-pattern-orange.png │ │ ├── pview │ │ │ ├── HeadCircumferenceIcon.png │ │ │ ├── LengthIcon.png │ │ │ ├── WeightIcon.png │ │ │ ├── avatar-female.png │ │ │ ├── avatar-male.png │ │ │ ├── blueBabyHeightImage.png │ │ │ ├── blueChildHeightImage.png │ │ │ ├── blueFatherHeightImage.png │ │ │ ├── blueTeenHeightImage.png │ │ │ ├── blueToddlerHeightImage.png │ │ │ ├── bmi-icon.png │ │ │ ├── fatherHeightImage.png │ │ │ ├── fatherHeightImageForeign.png │ │ │ ├── motherHeightImage.png │ │ │ ├── motherHeightImageForeign.png │ │ │ ├── pinkBabyHeightImage.png │ │ │ ├── pinkChildHeightImage.png │ │ │ ├── pinkMotherHeightImage.png │ │ │ ├── pinkTeenHeightImage.png │ │ │ ├── pinkToddlerHeightImage.png │ │ │ └── weights │ │ │ │ ├── Female 12-19yrs HEALTHY active.png │ │ │ │ ├── Female 12-19yrs HEALTHY.png │ │ │ │ ├── Female 12-19yrs OBESE active.png │ │ │ │ ├── Female 12-19yrs OBESE.png │ │ │ │ ├── Female 12-19yrs OVERWEIGHT active.png │ │ │ │ ├── Female 12-19yrs OVERWEIGHT.png │ │ │ │ ├── Female 12-19yrs UNDERWEIGHT active.png │ │ │ │ ├── Female 12-19yrs UNDERWEIGHT.png │ │ │ │ ├── Female 4-12yrs HEALTHY active.png │ │ │ │ ├── Female 4-12yrs HEALTHY.png │ │ │ │ ├── Female 4-12yrs OBESE active.png │ │ │ │ ├── Female 4-12yrs OBESE.png │ │ │ │ ├── Female 4-12yrs OVERWEIGHT active.png │ │ │ │ ├── Female 4-12yrs OVERWEIGHT.png │ │ │ │ ├── Female 4-12yrs UNDERWEIGHT active.png │ │ │ │ ├── Female 4-12yrs UNDERWEIGHT.png │ │ │ │ ├── Infant HEALTHY active.png │ │ │ │ ├── Infant HEALTHY.png │ │ │ │ ├── Infant OBESE active.png │ │ │ │ ├── Infant OBESE.png │ │ │ │ ├── Infant OVERWEIGHT active.png │ │ │ │ ├── Infant OVERWEIGHT.png │ │ │ │ ├── Infant UNDERWEIGHT active.png │ │ │ │ ├── Infant UNDERWEIGHT.png │ │ │ │ ├── Male 12-19yrs HEALTHY active.png │ │ │ │ ├── Male 12-19yrs HEALTHY.png │ │ │ │ ├── Male 12-19yrs OBESE active.png │ │ │ │ ├── Male 12-19yrs OBESE.png │ │ │ │ ├── Male 12-19yrs OVERWEIGHT active.png │ │ │ │ ├── Male 12-19yrs OVERWEIGHT.png │ │ │ │ ├── Male 12-19yrs UNDERWEIGHT active.png │ │ │ │ ├── Male 12-19yrs UNDERWEIGHT.png │ │ │ │ ├── Male 4-12yrs HEALTHY active.png │ │ │ │ ├── Male 4-12yrs HEALTHY.png │ │ │ │ ├── Male 4-12yrs OBESE active.png │ │ │ │ ├── Male 4-12yrs OBESE.png │ │ │ │ ├── Male 4-12yrs OVERWEIGHT active.png │ │ │ │ ├── Male 4-12yrs OVERWEIGHT.png │ │ │ │ ├── Male 4-12yrs UNDERWEIGHT active.png │ │ │ │ ├── Male 4-12yrs UNDERWEIGHT.png │ │ │ │ ├── Toddler HEALTHY active.png │ │ │ │ ├── Toddler HEALTHY.png │ │ │ │ ├── Toddler OBESE active.png │ │ │ │ ├── Toddler OBESE.png │ │ │ │ ├── Toddler OVERWEIGHT active.png │ │ │ │ ├── Toddler OVERWEIGHT.png │ │ │ │ ├── Toddler UNDERWEIGHT active.png │ │ │ │ └── Toddler UNDERWEIGHT.png │ │ ├── smart-logo-small.png │ │ ├── spinner.gif │ │ ├── spinner2.gif │ │ ├── tab-sprite.png │ │ ├── tabs │ │ │ └── tabs.fw.png │ │ ├── time-tabs-sprite.png │ │ ├── transparent.gif │ │ ├── trash │ │ │ ├── CursorZoomIn.bmp │ │ │ ├── PlacHholderAvatar.png │ │ │ ├── gear.png │ │ │ ├── patient-icon.png │ │ │ └── settings-icon.png │ │ └── view-mode.png │ ├── index.html │ ├── js │ │ ├── about-dialog.js │ │ ├── chart-pane.js │ │ ├── charts │ │ │ ├── body-mass-index-chart.js │ │ │ ├── chart-stack.js │ │ │ ├── chart.js │ │ │ ├── head-chart.js │ │ │ ├── length-chart.js │ │ │ ├── mini_charts.js │ │ │ ├── percentile-chart.js │ │ │ └── weight-chart.js │ │ ├── gc-app.js │ │ ├── gc-boneage-calculator.js │ │ ├── gc-chart-config.js │ │ ├── gc-chart.js │ │ ├── gc-charts-data.js │ │ ├── gc-grid-view.js │ │ ├── gc-model.js │ │ ├── gc-parental-view.js │ │ ├── gc-pointset.js │ │ ├── gc-sample-patients.js │ │ ├── gc-smart-data.js │ │ ├── gc-statistics.js │ │ ├── gc-style-generator.js │ │ ├── gc-translations.js │ │ ├── print2.js │ │ ├── settings-editor.js │ │ └── util.js │ ├── lib │ │ ├── jquery-1.8.2.js │ │ ├── jquery-ui-1.8.14.custom.min.js │ │ ├── jquery-ui-1.9.1.js │ │ ├── jquery.js │ │ ├── raphael.js │ │ ├── smart-api-client-0.6-dev.js │ │ └── xdate.js │ ├── license.txt │ ├── print-charts.html │ ├── select-patient.html │ ├── settings-editor.html │ ├── smart_manifest.json │ ├── tests │ │ ├── index.html │ │ ├── resources │ │ │ ├── qunit.css │ │ │ └── qunit.js │ │ ├── test-pointset-clip.html │ │ ├── test-pointset-smoothing.html │ │ ├── test-pointset.js │ │ └── test-utils.js │ └── themes │ │ └── custom-theme │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ ├── ui-bg_glass_75_ddecee_1x400.png │ │ ├── ui-bg_glass_85_d4e3e5_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_gloss-wave_55_c3dde0_500x100.png │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ ├── ui-icons_217bc0_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_469bdd_256x240.png │ │ ├── ui-icons_6da8d5_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ ├── ui-icons_d8e7f3_256x240.png │ │ └── ui-icons_f9bd01_256x240.png │ │ └── jquery-ui-1.8.18.custom.css │ ├── index.html │ ├── js │ ├── jschannel.js │ ├── smart-api-client-0.6-dev.js │ ├── smart-api-container.js │ ├── smart-container.js │ └── sparql.js │ ├── manifest.json │ └── sample_meds.xml └── util └── aql-format ├── CodeMirror ├── mode │ └── aql │ │ └── aql.js └── theme │ └── ehrexplorer.css ├── aql-format.html ├── aql-format.js └── readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/.gitignore -------------------------------------------------------------------------------- /HealthKit/HKConnect.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HealthKit/HKConnect/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/AppDelegate.h -------------------------------------------------------------------------------- /HealthKit/HKConnect/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/AppDelegate.m -------------------------------------------------------------------------------- /HealthKit/HKConnect/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /HealthKit/HKConnect/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HealthKit/HKConnect/HKConnect-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/HKConnect-Prefix.pch -------------------------------------------------------------------------------- /HealthKit/HKConnect/HKConnect.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/HKConnect.entitlements -------------------------------------------------------------------------------- /HealthKit/HKConnect/HealthStore.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/HealthStore.plist -------------------------------------------------------------------------------- /HealthKit/HKConnect/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/Info.plist -------------------------------------------------------------------------------- /HealthKit/HKConnect/MARExportSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/MARExportSettings.h -------------------------------------------------------------------------------- /HealthKit/HKConnect/MARExportSettings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/MARExportSettings.m -------------------------------------------------------------------------------- /HealthKit/HKConnect/MARExportViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/MARExportViewController.h -------------------------------------------------------------------------------- /HealthKit/HKConnect/MARExportViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/MARExportViewController.m -------------------------------------------------------------------------------- /HealthKit/HKConnect/MARGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/MARGlobals.h -------------------------------------------------------------------------------- /HealthKit/HKConnect/MARHealthStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/MARHealthStore.h -------------------------------------------------------------------------------- /HealthKit/HKConnect/MARHealthStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/MARHealthStore.m -------------------------------------------------------------------------------- /HealthKit/HKConnect/MARImportData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/MARImportData.h -------------------------------------------------------------------------------- /HealthKit/HKConnect/MARImportData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/MARImportData.m -------------------------------------------------------------------------------- /HealthKit/HKConnect/MARLogFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/MARLogFormatter.h -------------------------------------------------------------------------------- /HealthKit/HKConnect/MARLogFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/MARLogFormatter.m -------------------------------------------------------------------------------- /HealthKit/HKConnect/MARSampleViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/MARSampleViewCell.h -------------------------------------------------------------------------------- /HealthKit/HKConnect/MARSampleViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/MARSampleViewCell.m -------------------------------------------------------------------------------- /HealthKit/HKConnect/MARSamplesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/MARSamplesViewController.h -------------------------------------------------------------------------------- /HealthKit/HKConnect/MARSamplesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/MARSamplesViewController.m -------------------------------------------------------------------------------- /HealthKit/HKConnect/NSDate+MARAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/NSDate+MARAdditions.h -------------------------------------------------------------------------------- /HealthKit/HKConnect/NSDate+MARAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/NSDate+MARAdditions.m -------------------------------------------------------------------------------- /HealthKit/HKConnect/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/iTunesArtwork -------------------------------------------------------------------------------- /HealthKit/HKConnect/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/iTunesArtwork@2x -------------------------------------------------------------------------------- /HealthKit/HKConnect/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/HKConnect/main.m -------------------------------------------------------------------------------- /HealthKit/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/Podfile -------------------------------------------------------------------------------- /HealthKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/README.md -------------------------------------------------------------------------------- /HealthKit/Vendor/Crashlytics.framework/Crashlytics: -------------------------------------------------------------------------------- 1 | Versions/Current/Crashlytics -------------------------------------------------------------------------------- /HealthKit/Vendor/Crashlytics.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /HealthKit/Vendor/Crashlytics.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /HealthKit/Vendor/Crashlytics.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /HealthKit/Vendor/Crashlytics.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /HealthKit/Vendor/Crashlytics.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/Vendor/Crashlytics.framework/run -------------------------------------------------------------------------------- /HealthKit/Vendor/Crashlytics.framework/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/Vendor/Crashlytics.framework/submit -------------------------------------------------------------------------------- /HealthKit/Vendor/Fabric.framework/Fabric: -------------------------------------------------------------------------------- 1 | Versions/Current/Fabric -------------------------------------------------------------------------------- /HealthKit/Vendor/Fabric.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /HealthKit/Vendor/Fabric.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /HealthKit/Vendor/Fabric.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /HealthKit/Vendor/Fabric.framework/Versions/A/Fabric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/Vendor/Fabric.framework/Versions/A/Fabric -------------------------------------------------------------------------------- /HealthKit/Vendor/Fabric.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /HealthKit/Vendor/Fabric.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/HealthKit/Vendor/Fabric.framework/run -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/README.md -------------------------------------------------------------------------------- /demo/demographics/bootflat/css/bootflat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/css/bootflat.css -------------------------------------------------------------------------------- /demo/demographics/bootflat/css/bootflat.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/css/bootflat.css.map -------------------------------------------------------------------------------- /demo/demographics/bootflat/css/bootflat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/css/bootflat.min.css -------------------------------------------------------------------------------- /demo/demographics/bootflat/js/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/js/icheck.min.js -------------------------------------------------------------------------------- /demo/demographics/bootflat/scss/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/scss/.csscomb.json -------------------------------------------------------------------------------- /demo/demographics/bootflat/scss/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/scss/.csslintrc -------------------------------------------------------------------------------- /demo/demographics/bootflat/scss/bootflat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/scss/bootflat.scss -------------------------------------------------------------------------------- /demo/demographics/bootflat/scss/bootflat/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/scss/bootflat/_alert.scss -------------------------------------------------------------------------------- /demo/demographics/bootflat/scss/bootflat/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/scss/bootflat/_form.scss -------------------------------------------------------------------------------- /demo/demographics/bootflat/scss/bootflat/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/scss/bootflat/_list.scss -------------------------------------------------------------------------------- /demo/demographics/bootflat/scss/bootflat/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/scss/bootflat/_modal.scss -------------------------------------------------------------------------------- /demo/demographics/bootflat/scss/bootflat/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/scss/bootflat/_pager.scss -------------------------------------------------------------------------------- /demo/demographics/bootflat/scss/bootflat/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/scss/bootflat/_panel.scss -------------------------------------------------------------------------------- /demo/demographics/bootflat/scss/bootflat/_pill.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/scss/bootflat/_pill.scss -------------------------------------------------------------------------------- /demo/demographics/bootflat/scss/bootflat/_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/scss/bootflat/_tab.scss -------------------------------------------------------------------------------- /demo/demographics/bootflat/scss/bootflat/_well.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/bootflat/scss/bootflat/_well.scss -------------------------------------------------------------------------------- /demo/demographics/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/css/bootstrap.min.css -------------------------------------------------------------------------------- /demo/demographics/css/demographics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/css/demographics.css -------------------------------------------------------------------------------- /demo/demographics/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/css/font-awesome.css -------------------------------------------------------------------------------- /demo/demographics/demographics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/demographics.html -------------------------------------------------------------------------------- /demo/demographics/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /demo/demographics/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /demo/demographics/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /demo/demographics/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /demo/demographics/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /demo/demographics/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/js/bootstrap.min.js -------------------------------------------------------------------------------- /demo/demographics/js/demographics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/js/demographics.js -------------------------------------------------------------------------------- /demo/demographics/js/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/js/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /demo/demographics/js/jquery-2.1.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/js/jquery-2.1.1.min.map -------------------------------------------------------------------------------- /demo/demographics/js/jquery-ui-1.10.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/demographics/js/jquery-ui-1.10.4.min.js -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/css/bootflat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/css/bootflat.css -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/css/bootflat.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/css/bootflat.css.map -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/css/bootflat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/css/bootflat.min.css -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/img/check_flat/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/img/check_flat/default.png -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/img/check_flat/default.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/img/check_flat/default.psd -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/js/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/js/icheck.min.js -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_accordion.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_alert.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_button.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_dropdown.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_footer.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_form.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_global.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_jumbotron.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_list.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_modal.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_navbar.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_pager.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_panel.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_pill.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_pill.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_popover.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_progress.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_tab.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_thumbnail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_thumbnail.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_tooltip.scss -------------------------------------------------------------------------------- /demo/flip-emr/bootflat/scss/bootflat/_well.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/bootflat/scss/bootflat/_well.scss -------------------------------------------------------------------------------- /demo/flip-emr/css/bookblock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/css/bookblock.css -------------------------------------------------------------------------------- /demo/flip-emr/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/css/bootstrap.min.css -------------------------------------------------------------------------------- /demo/flip-emr/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/css/default.css -------------------------------------------------------------------------------- /demo/flip-emr/css/flip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/css/flip.css -------------------------------------------------------------------------------- /demo/flip-emr/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/css/font-awesome.css -------------------------------------------------------------------------------- /demo/flip-emr/css/pushy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/css/pushy.css -------------------------------------------------------------------------------- /demo/flip-emr/fonts/fontAwesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/fonts/fontAwesome/FontAwesome.otf -------------------------------------------------------------------------------- /demo/flip-emr/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /demo/flip-emr/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /demo/flip-emr/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /demo/flip-emr/images/allergies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/images/allergies.png -------------------------------------------------------------------------------- /demo/flip-emr/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/images/bg.png -------------------------------------------------------------------------------- /demo/flip-emr/images/heartbeat-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/images/heartbeat-white.png -------------------------------------------------------------------------------- /demo/flip-emr/images/lab-rep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/images/lab-rep.png -------------------------------------------------------------------------------- /demo/flip-emr/images/med-dia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/images/med-dia.png -------------------------------------------------------------------------------- /demo/flip-emr/images/meds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/images/meds.png -------------------------------------------------------------------------------- /demo/flip-emr/images/vital-signs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/images/vital-signs.png -------------------------------------------------------------------------------- /demo/flip-emr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/index.html -------------------------------------------------------------------------------- /demo/flip-emr/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/js/bootstrap.min.js -------------------------------------------------------------------------------- /demo/flip-emr/js/flip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/js/flip.js -------------------------------------------------------------------------------- /demo/flip-emr/js/handlebars-v1.3.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/js/handlebars-v1.3.0.js -------------------------------------------------------------------------------- /demo/flip-emr/js/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/js/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /demo/flip-emr/js/jquery-2.1.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/js/jquery-2.1.1.min.map -------------------------------------------------------------------------------- /demo/flip-emr/js/jquery.bookblock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/js/jquery.bookblock.js -------------------------------------------------------------------------------- /demo/flip-emr/js/jquery.touchSwipe-1.2.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/js/jquery.touchSwipe-1.2.5.js -------------------------------------------------------------------------------- /demo/flip-emr/js/modernizr.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/js/modernizr.custom.js -------------------------------------------------------------------------------- /demo/flip-emr/js/pushy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/flip-emr/js/pushy.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-animate.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-animate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-animate.min.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-animate.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-animate.min.js.map -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-aria.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-aria.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-aria.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-aria.min.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-aria.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-aria.min.js.map -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-cookies.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-cookies.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-cookies.min.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-cookies.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-cookies.min.js.map -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-csp.css -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-loader.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-loader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-loader.min.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-loader.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-loader.min.js.map -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-messages.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-messages.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-messages.min.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-messages.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-messages.min.js.map -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-mocks.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-resource.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-resource.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-resource.min.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-resource.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-resource.min.js.map -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-route.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-route.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-route.min.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-route.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-route.min.js.map -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-sanitize.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-sanitize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-sanitize.min.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-sanitize.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-sanitize.min.js.map -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-scenario.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-touch.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-touch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-touch.min.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular-touch.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular-touch.min.js.map -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular.min.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/angular.min.js.map -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/Error404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/Error404.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/components/marked-0.3.2/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/marked'); 2 | -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/css/animations.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/css/doc_widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/css/doc_widgets.css -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/css/docs.css -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/css/prettify-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/css/prettify-theme.css -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/css/prettify.css -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/examples/example-example10/customer-name.html: -------------------------------------------------------------------------------- 1 | Name: {{customer.name}} -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/examples/example-example103/http-hello.html: -------------------------------------------------------------------------------- 1 | Hello, $http! -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/examples/example-example112/script.js: -------------------------------------------------------------------------------- 1 | angular.module('ngClickExample', ['ngTouch']); -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/examples/example-example113/script.js: -------------------------------------------------------------------------------- 1 | angular.module('ngSwipeLeftExample', ['ngTouch']); -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/examples/example-example114/script.js: -------------------------------------------------------------------------------- 1 | angular.module('ngSwipeRightExample', ['ngTouch']); -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/examples/example-example16/my-dialog.html: -------------------------------------------------------------------------------- 1 |
2 |
-------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/examples/example-example17/my-dialog.html: -------------------------------------------------------------------------------- 1 |
2 |
-------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/examples/example-example82/template1.html: -------------------------------------------------------------------------------- 1 | Content of template1.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/examples/example-example82/template2.html: -------------------------------------------------------------------------------- 1 | Content of template2.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/img/angular_parts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/img/angular_parts.png -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/img/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/img/bullet.png -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/img/form_data_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/img/form_data_flow.png -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/img/helloworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/img/helloworld.png -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/index-debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/index-debug.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/index-jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/index-jquery.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/index-production.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/index-production.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/index.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/js/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/js/docs.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/js/docs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/js/docs.min.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/js/docs.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/js/docs.min.js.map -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/js/nav-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/js/nav-data.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/js/pages-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/js/pages-data.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/js/search-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/js/search-data.json -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/js/search-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/js/search-worker.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/js/versions-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/js/versions-data.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/partials/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/partials/api.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/partials/api/auto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/partials/api/auto.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/partials/api/ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/partials/api/ng.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/partials/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/partials/error.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/partials/error/$q.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/partials/error/$q.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/partials/error/ng.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/partials/error/ng.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/partials/guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/partials/guide.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/partials/guide/di.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/partials/guide/di.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/partials/guide/ie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/partials/guide/ie.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/partials/misc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/partials/misc.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/partials/misc/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/partials/misc/faq.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/docs/partials/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/docs/partials/tutorial.html -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/errors.json -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_aa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_aa.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_af.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_agq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_agq.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ak.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_am.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ar.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_as.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_as.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_asa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_asa.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ast.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_az.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_bas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_bas.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_be.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_bem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_bem.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_bez.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_bez.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_bg.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_bm.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_bn.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_bo.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_br.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_brx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_brx.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_bs.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_byn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_byn.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ca.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_cgg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_cgg.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_chr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_chr.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ckb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ckb.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_cs.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_cy.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_da.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_dav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_dav.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_de.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_dje.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_dje.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_dua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_dua.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_dyo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_dyo.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_dz.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ebu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ebu.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ee.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_el.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_en.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_eo.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_es.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_et.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_eu.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ewo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ewo.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_fa.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ff.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_fi.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_fil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_fil.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_fo.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_fr.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_fur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_fur.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_fy.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ga.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_gd.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_gl.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_gsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_gsw.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_gu.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_guz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_guz.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_gv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_gv.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ha.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_haw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_haw.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_he.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_hi.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_hr.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_hu.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_hy.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ia.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_id.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ig.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ii.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_in.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_is.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_it.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_iw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_iw.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ja.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_jgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_jgo.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_jmc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_jmc.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ka.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_kab.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_kam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_kam.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_kde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_kde.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_kea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_kea.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_khq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_khq.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ki.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_kk.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_kkj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_kkj.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_kl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_kl.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_kln.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_kln.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_km.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_kn.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ko.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_kok.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_kok.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ks.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ksb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ksb.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ksf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ksf.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ksh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ksh.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_kw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_kw.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ky.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_lag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_lag.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_lg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_lg.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_lkt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_lkt.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ln.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ln.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_lo.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_lt.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_lu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_lu.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_luo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_luo.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_luy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_luy.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_lv.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_mas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_mas.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_mer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_mer.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_mfe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_mfe.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_mg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_mg.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_mgh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_mgh.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_mgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_mgo.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_mk.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ml.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_mn.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_mr.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ms.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_mt.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_mua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_mua.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_my.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_naq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_naq.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_nb.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_nd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_nd.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ne.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_nl.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_nmg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_nmg.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_nn.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_nnh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_nnh.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_no.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_nr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_nr.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_nso.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_nso.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_nus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_nus.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_nyn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_nyn.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_om.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_om.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_or.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_or.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_os.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_pa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_pa.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_pl.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ps.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_pt.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_rm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_rm.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_rn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_rn.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ro.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_rof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_rof.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ru.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_rw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_rw.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_rwk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_rwk.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_sah.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_sah.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_saq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_saq.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_sbp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_sbp.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_se.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_seh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_seh.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ses.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_sg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_sg.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_shi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_shi.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_si.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_sk.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_sl.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_sn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_sn.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_so.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_so.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_sq.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_sr.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ss.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ssy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ssy.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_st.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_st.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_sv.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_sw.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_swc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_swc.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ta.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_te.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_teo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_teo.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_tg.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_th.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ti.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_tig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_tig.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_tl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_tl.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_tn.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_to.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_tr.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ts.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_twq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_twq.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_tzm.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ug.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_uk.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ur.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_uz.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_vai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_vai.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_ve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_ve.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_vi.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_vo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_vo.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_vun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_vun.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_wae.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_wae.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_wal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_wal.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_xh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_xh.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_xog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_xog.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_yo.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_zh.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/i18n/angular-locale_zu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/i18n/angular-locale_zu.js -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/angular/1.3.2/version.json -------------------------------------------------------------------------------- /demo/forms/angular/1.3.2/version.txt: -------------------------------------------------------------------------------- 1 | 1.3.2 -------------------------------------------------------------------------------- /demo/forms/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/app/app.js -------------------------------------------------------------------------------- /demo/forms/app/demographics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/app/demographics.js -------------------------------------------------------------------------------- /demo/forms/bootflat/css/bootflat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/css/bootflat.css -------------------------------------------------------------------------------- /demo/forms/bootflat/css/bootflat.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/css/bootflat.css.map -------------------------------------------------------------------------------- /demo/forms/bootflat/css/bootflat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/css/bootflat.min.css -------------------------------------------------------------------------------- /demo/forms/bootflat/img/check_flat/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/img/check_flat/default.png -------------------------------------------------------------------------------- /demo/forms/bootflat/img/check_flat/default.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/img/check_flat/default.psd -------------------------------------------------------------------------------- /demo/forms/bootflat/js/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/js/icheck.min.js -------------------------------------------------------------------------------- /demo/forms/bootflat/js/jquery.fs.selecter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/js/jquery.fs.selecter.js -------------------------------------------------------------------------------- /demo/forms/bootflat/js/jquery.fs.selecter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/js/jquery.fs.selecter.min.js -------------------------------------------------------------------------------- /demo/forms/bootflat/js/jquery.fs.stepper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/js/jquery.fs.stepper.min.js -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/.csscomb.json -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/.csslintrc -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_accordion.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_alert.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_breadcrumb.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_button.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_calendar.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_dropdown.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_footer.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_form.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_global.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_jumbotron.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_list.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_media_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_media_list.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_modal.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_navbar.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_pager.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_pagination.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_panel.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_pill.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_pill.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_popover.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_pricing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_pricing.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_progress.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_selecter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_selecter.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_stepper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_stepper.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_tab.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_thumbnail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_thumbnail.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_timeline.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_toggle.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_tooltip.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_typography.scss -------------------------------------------------------------------------------- /demo/forms/bootflat/scss/bootflat/_well.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/bootflat/scss/bootflat/_well.scss -------------------------------------------------------------------------------- /demo/forms/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/css/animate.css -------------------------------------------------------------------------------- /demo/forms/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/css/bootstrap.min.css -------------------------------------------------------------------------------- /demo/forms/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/css/font-awesome.min.css -------------------------------------------------------------------------------- /demo/forms/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/css/style.css -------------------------------------------------------------------------------- /demo/forms/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /demo/forms/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /demo/forms/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /demo/forms/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /demo/forms/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /demo/forms/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /demo/forms/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /demo/forms/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /demo/forms/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /demo/forms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/index.html -------------------------------------------------------------------------------- /demo/forms/js/bootstrap-growl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/js/bootstrap-growl.min.js -------------------------------------------------------------------------------- /demo/forms/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/js/bootstrap.min.js -------------------------------------------------------------------------------- /demo/forms/js/datetimepicker-tpls-0.11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/js/datetimepicker-tpls-0.11.js -------------------------------------------------------------------------------- /demo/forms/js/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/js/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /demo/forms/js/jquery-2.1.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/js/jquery-2.1.1.min.map -------------------------------------------------------------------------------- /demo/forms/js/tmhDynamicLocale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/js/tmhDynamicLocale.js -------------------------------------------------------------------------------- /demo/forms/js/ui-bootstrap-custom-tpls-0.10.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/js/ui-bootstrap-custom-tpls-0.10.0.js -------------------------------------------------------------------------------- /demo/forms/thinkehr/f4/css/ehr-form-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/thinkehr/f4/css/ehr-form-default.css -------------------------------------------------------------------------------- /demo/forms/thinkehr/f4/css/ehr-form-layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/thinkehr/f4/css/ehr-form-layout.css -------------------------------------------------------------------------------- /demo/forms/thinkehr/f4/css/ehr-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/thinkehr/f4/css/ehr-form.css -------------------------------------------------------------------------------- /demo/forms/thinkehr/f4/templates/ehr-boolean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/thinkehr/f4/templates/ehr-boolean.html -------------------------------------------------------------------------------- /demo/forms/thinkehr/f4/templates/ehr-date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/thinkehr/f4/templates/ehr-date.html -------------------------------------------------------------------------------- /demo/forms/thinkehr/f4/templates/ehr-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/thinkehr/f4/templates/ehr-form.html -------------------------------------------------------------------------------- /demo/forms/thinkehr/f4/templates/ehr-label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/thinkehr/f4/templates/ehr-label.html -------------------------------------------------------------------------------- /demo/forms/thinkehr/f4/templates/ehr-quantity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/thinkehr/f4/templates/ehr-quantity.html -------------------------------------------------------------------------------- /demo/forms/thinkehr/f4/templates/ehr-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/thinkehr/f4/templates/ehr-text.html -------------------------------------------------------------------------------- /demo/forms/thinkehr/f4/templates/ehr-time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/thinkehr/f4/templates/ehr-time.html -------------------------------------------------------------------------------- /demo/forms/thinkehr/f4/templates/ehr-unknown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/thinkehr/f4/templates/ehr-unknown.html -------------------------------------------------------------------------------- /demo/forms/thinkehr/f4/thinkehr-f4-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/thinkehr/f4/thinkehr-f4-model.js -------------------------------------------------------------------------------- /demo/forms/thinkehr/f4/thinkehr-f4-view-angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/forms/thinkehr/f4/thinkehr-f4-view-angular.js -------------------------------------------------------------------------------- /demo/formvitals/bootflat/css/bootflat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/css/bootflat.css -------------------------------------------------------------------------------- /demo/formvitals/bootflat/css/bootflat.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/css/bootflat.css.map -------------------------------------------------------------------------------- /demo/formvitals/bootflat/css/bootflat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/css/bootflat.min.css -------------------------------------------------------------------------------- /demo/formvitals/bootflat/js/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/js/icheck.min.js -------------------------------------------------------------------------------- /demo/formvitals/bootflat/scss/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/scss/.csscomb.json -------------------------------------------------------------------------------- /demo/formvitals/bootflat/scss/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/scss/.csslintrc -------------------------------------------------------------------------------- /demo/formvitals/bootflat/scss/bootflat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/scss/bootflat.scss -------------------------------------------------------------------------------- /demo/formvitals/bootflat/scss/bootflat/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/scss/bootflat/_alert.scss -------------------------------------------------------------------------------- /demo/formvitals/bootflat/scss/bootflat/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/scss/bootflat/_form.scss -------------------------------------------------------------------------------- /demo/formvitals/bootflat/scss/bootflat/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/scss/bootflat/_list.scss -------------------------------------------------------------------------------- /demo/formvitals/bootflat/scss/bootflat/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/scss/bootflat/_modal.scss -------------------------------------------------------------------------------- /demo/formvitals/bootflat/scss/bootflat/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/scss/bootflat/_pager.scss -------------------------------------------------------------------------------- /demo/formvitals/bootflat/scss/bootflat/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/scss/bootflat/_panel.scss -------------------------------------------------------------------------------- /demo/formvitals/bootflat/scss/bootflat/_pill.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/scss/bootflat/_pill.scss -------------------------------------------------------------------------------- /demo/formvitals/bootflat/scss/bootflat/_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/scss/bootflat/_tab.scss -------------------------------------------------------------------------------- /demo/formvitals/bootflat/scss/bootflat/_well.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/bootflat/scss/bootflat/_well.scss -------------------------------------------------------------------------------- /demo/formvitals/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/css/animate.css -------------------------------------------------------------------------------- /demo/formvitals/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/css/bootstrap.min.css -------------------------------------------------------------------------------- /demo/formvitals/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/css/font-awesome.css -------------------------------------------------------------------------------- /demo/formvitals/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/css/style.css -------------------------------------------------------------------------------- /demo/formvitals/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /demo/formvitals/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /demo/formvitals/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /demo/formvitals/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /demo/formvitals/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /demo/formvitals/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/index.html -------------------------------------------------------------------------------- /demo/formvitals/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/js/app.js -------------------------------------------------------------------------------- /demo/formvitals/js/bootstrap-growl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/js/bootstrap-growl.min.js -------------------------------------------------------------------------------- /demo/formvitals/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/js/bootstrap.min.js -------------------------------------------------------------------------------- /demo/formvitals/js/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/js/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /demo/formvitals/js/jquery-2.1.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/js/jquery-2.1.1.min.map -------------------------------------------------------------------------------- /demo/formvitals/js/jquery.spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/js/jquery.spin.js -------------------------------------------------------------------------------- /demo/formvitals/js/spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/formvitals/js/spin.min.js -------------------------------------------------------------------------------- /demo/phr/bootflat/css/bootflat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/css/bootflat.css -------------------------------------------------------------------------------- /demo/phr/bootflat/css/bootflat.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/css/bootflat.css.map -------------------------------------------------------------------------------- /demo/phr/bootflat/css/bootflat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/css/bootflat.min.css -------------------------------------------------------------------------------- /demo/phr/bootflat/img/check_flat/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/img/check_flat/default.png -------------------------------------------------------------------------------- /demo/phr/bootflat/img/check_flat/default.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/img/check_flat/default.psd -------------------------------------------------------------------------------- /demo/phr/bootflat/js/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/js/icheck.min.js -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_accordion.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_alert.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_breadcrumb.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_button.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_button_group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_button_group.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_dropdown.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_footer.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_form.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_global.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_jumbotron.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_label_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_label_badge.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_list.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_media_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_media_list.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_modal.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_navbar.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_pager.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_pagination.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_panel.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_pill.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_pill.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_popover.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_progress.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_tab.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_thumbnail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_thumbnail.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_tooltip.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_typography.scss -------------------------------------------------------------------------------- /demo/phr/bootflat/scss/bootflat/_well.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/bootflat/scss/bootflat/_well.scss -------------------------------------------------------------------------------- /demo/phr/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/css/font-awesome.css -------------------------------------------------------------------------------- /demo/phr/css/morris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/css/morris.css -------------------------------------------------------------------------------- /demo/phr/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/css/style.css -------------------------------------------------------------------------------- /demo/phr/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /demo/phr/fonts/fontawesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/fonts/fontawesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /demo/phr/fonts/fontawesome/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/fonts/fontawesome/fontawesome-webfont.svg -------------------------------------------------------------------------------- /demo/phr/fonts/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/fonts/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /demo/phr/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /demo/phr/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /demo/phr/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /demo/phr/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /demo/phr/img/agrafo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/img/agrafo.png -------------------------------------------------------------------------------- /demo/phr/img/back-to-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/img/back-to-top.png -------------------------------------------------------------------------------- /demo/phr/img/binder-ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/img/binder-ring.png -------------------------------------------------------------------------------- /demo/phr/img/body-blank-female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/img/body-blank-female.png -------------------------------------------------------------------------------- /demo/phr/img/body-blank-male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/img/body-blank-male.png -------------------------------------------------------------------------------- /demo/phr/img/body-blank-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/img/body-blank-small.png -------------------------------------------------------------------------------- /demo/phr/img/body-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/img/body-placeholder.png -------------------------------------------------------------------------------- /demo/phr/img/doctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/img/doctor.png -------------------------------------------------------------------------------- /demo/phr/img/doctor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/img/doctor2.png -------------------------------------------------------------------------------- /demo/phr/img/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/img/female.png -------------------------------------------------------------------------------- /demo/phr/img/patient1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/img/patient1.png -------------------------------------------------------------------------------- /demo/phr/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/img/user.png -------------------------------------------------------------------------------- /demo/phr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/index.html -------------------------------------------------------------------------------- /demo/phr/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/js/app.js -------------------------------------------------------------------------------- /demo/phr/js/handlebars-v1.3.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/js/handlebars-v1.3.0.js -------------------------------------------------------------------------------- /demo/phr/js/morris.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/js/morris.min.js -------------------------------------------------------------------------------- /demo/phr/js/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/phr/js/timeline.js -------------------------------------------------------------------------------- /demo/social/bootflat/css/bootflat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/css/bootflat.css -------------------------------------------------------------------------------- /demo/social/bootflat/css/bootflat.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/css/bootflat.css.map -------------------------------------------------------------------------------- /demo/social/bootflat/css/bootflat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/css/bootflat.min.css -------------------------------------------------------------------------------- /demo/social/bootflat/img/check_flat/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/img/check_flat/default.png -------------------------------------------------------------------------------- /demo/social/bootflat/img/check_flat/default.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/img/check_flat/default.psd -------------------------------------------------------------------------------- /demo/social/bootflat/js/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/js/icheck.min.js -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_accordion.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_alert.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_button.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_dropdown.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_footer.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_form.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_global.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_jumbotron.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_list.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_modal.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_navbar.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_pager.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_panel.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_pill.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_pill.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_popover.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_progress.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_tab.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_thumbnail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_thumbnail.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_tooltip.scss -------------------------------------------------------------------------------- /demo/social/bootflat/scss/bootflat/_well.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/bootflat/scss/bootflat/_well.scss -------------------------------------------------------------------------------- /demo/social/css/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/css/basic.css -------------------------------------------------------------------------------- /demo/social/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/css/bootstrap.min.css -------------------------------------------------------------------------------- /demo/social/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/css/font-awesome.css -------------------------------------------------------------------------------- /demo/social/css/social.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/css/social.css -------------------------------------------------------------------------------- /demo/social/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /demo/social/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /demo/social/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /demo/social/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /demo/social/img/back-to-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/img/back-to-top.png -------------------------------------------------------------------------------- /demo/social/img/doctor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/img/doctor2.png -------------------------------------------------------------------------------- /demo/social/img/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/img/female.png -------------------------------------------------------------------------------- /demo/social/img/file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/img/file-icon.png -------------------------------------------------------------------------------- /demo/social/img/knee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/img/knee.jpg -------------------------------------------------------------------------------- /demo/social/img/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/img/spritemap.png -------------------------------------------------------------------------------- /demo/social/img/spritemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/img/spritemap@2x.png -------------------------------------------------------------------------------- /demo/social/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/index.html -------------------------------------------------------------------------------- /demo/social/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/js/bootstrap.min.js -------------------------------------------------------------------------------- /demo/social/js/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/js/dropzone.js -------------------------------------------------------------------------------- /demo/social/js/handlebars-v1.3.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/js/handlebars-v1.3.0.js -------------------------------------------------------------------------------- /demo/social/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/js/html5shiv.js -------------------------------------------------------------------------------- /demo/social/js/jquery-1.11.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/js/jquery-1.11.0.min.js -------------------------------------------------------------------------------- /demo/social/js/jquery-1.11.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/js/jquery-1.11.0.min.map -------------------------------------------------------------------------------- /demo/social/js/jquery-ui-1.10.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/js/jquery-ui-1.10.4.min.js -------------------------------------------------------------------------------- /demo/social/js/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/js/jquery.timeago.js -------------------------------------------------------------------------------- /demo/social/js/modernizr.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/js/modernizr.custom.js -------------------------------------------------------------------------------- /demo/social/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/js/respond.min.js -------------------------------------------------------------------------------- /demo/social/js/social.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/js/social.js -------------------------------------------------------------------------------- /demo/social/js/xdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/social/js/xdate.js -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular-animate.js -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular-aria.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular-aria.js -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular-aria.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular-aria.min.js -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular-cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular-cookies.js -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular-csp.css -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular-loader.js -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular-messages.js -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular-mocks.js -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular-resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular-resource.js -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular-route.js -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular-sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular-sanitize.js -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular-scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular-scenario.js -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular-touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular-touch.js -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular.js -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular.min.js -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/angular.min.js.map -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/errors.json -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/angular/1.3.2/version.json -------------------------------------------------------------------------------- /demo/stethoscope/angular/1.3.2/version.txt: -------------------------------------------------------------------------------- 1 | 1.3.2 -------------------------------------------------------------------------------- /demo/stethoscope/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/app/app.js -------------------------------------------------------------------------------- /demo/stethoscope/app/demographics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/app/demographics.js -------------------------------------------------------------------------------- /demo/stethoscope/app/imagemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/app/imagemap.js -------------------------------------------------------------------------------- /demo/stethoscope/bootflat/css/bootflat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/bootflat/css/bootflat.css -------------------------------------------------------------------------------- /demo/stethoscope/bootflat/css/bootflat.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/bootflat/css/bootflat.css.map -------------------------------------------------------------------------------- /demo/stethoscope/bootflat/css/bootflat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/bootflat/css/bootflat.min.css -------------------------------------------------------------------------------- /demo/stethoscope/bootflat/js/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/bootflat/js/icheck.min.js -------------------------------------------------------------------------------- /demo/stethoscope/bootflat/js/jquery.fs.selecter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/bootflat/js/jquery.fs.selecter.js -------------------------------------------------------------------------------- /demo/stethoscope/bootflat/scss/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/bootflat/scss/.csscomb.json -------------------------------------------------------------------------------- /demo/stethoscope/bootflat/scss/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/bootflat/scss/.csslintrc -------------------------------------------------------------------------------- /demo/stethoscope/bootflat/scss/bootflat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/bootflat/scss/bootflat.scss -------------------------------------------------------------------------------- /demo/stethoscope/bootflat/scss/bootflat/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/bootflat/scss/bootflat/_form.scss -------------------------------------------------------------------------------- /demo/stethoscope/bootflat/scss/bootflat/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/bootflat/scss/bootflat/_list.scss -------------------------------------------------------------------------------- /demo/stethoscope/bootflat/scss/bootflat/_pill.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/bootflat/scss/bootflat/_pill.scss -------------------------------------------------------------------------------- /demo/stethoscope/bootflat/scss/bootflat/_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/bootflat/scss/bootflat/_tab.scss -------------------------------------------------------------------------------- /demo/stethoscope/bootflat/scss/bootflat/_well.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/bootflat/scss/bootflat/_well.scss -------------------------------------------------------------------------------- /demo/stethoscope/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/css/animate.css -------------------------------------------------------------------------------- /demo/stethoscope/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/css/bootstrap.min.css -------------------------------------------------------------------------------- /demo/stethoscope/css/dropzone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/css/dropzone.css -------------------------------------------------------------------------------- /demo/stethoscope/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/css/font-awesome.min.css -------------------------------------------------------------------------------- /demo/stethoscope/css/jPushMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/css/jPushMenu.css -------------------------------------------------------------------------------- /demo/stethoscope/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/css/style.css -------------------------------------------------------------------------------- /demo/stethoscope/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /demo/stethoscope/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /demo/stethoscope/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /demo/stethoscope/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /demo/stethoscope/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /demo/stethoscope/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/index.html -------------------------------------------------------------------------------- /demo/stethoscope/js/bootstrap-growl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/js/bootstrap-growl.min.js -------------------------------------------------------------------------------- /demo/stethoscope/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/js/bootstrap.min.js -------------------------------------------------------------------------------- /demo/stethoscope/js/dropzone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/js/dropzone.min.js -------------------------------------------------------------------------------- /demo/stethoscope/js/jPushMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/js/jPushMenu.js -------------------------------------------------------------------------------- /demo/stethoscope/js/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/js/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /demo/stethoscope/js/jquery-2.1.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/js/jquery-2.1.1.min.map -------------------------------------------------------------------------------- /demo/stethoscope/js/jquery-ui-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/js/jquery-ui-1.11.1.js -------------------------------------------------------------------------------- /demo/stethoscope/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/js/jquery-ui.min.js -------------------------------------------------------------------------------- /demo/stethoscope/js/jquery.maphilight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/js/jquery.maphilight.js -------------------------------------------------------------------------------- /demo/stethoscope/js/jquery.rwdImageMaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/stethoscope/js/jquery.rwdImageMaps.js -------------------------------------------------------------------------------- /demo/terminology/bootflat/css/bootflat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/bootflat/css/bootflat.css -------------------------------------------------------------------------------- /demo/terminology/bootflat/css/bootflat.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/bootflat/css/bootflat.css.map -------------------------------------------------------------------------------- /demo/terminology/bootflat/css/bootflat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/bootflat/css/bootflat.min.css -------------------------------------------------------------------------------- /demo/terminology/bootflat/js/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/bootflat/js/icheck.min.js -------------------------------------------------------------------------------- /demo/terminology/bootflat/scss/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/bootflat/scss/.csscomb.json -------------------------------------------------------------------------------- /demo/terminology/bootflat/scss/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/bootflat/scss/.csslintrc -------------------------------------------------------------------------------- /demo/terminology/bootflat/scss/bootflat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/bootflat/scss/bootflat.scss -------------------------------------------------------------------------------- /demo/terminology/bootflat/scss/bootflat/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/bootflat/scss/bootflat/_form.scss -------------------------------------------------------------------------------- /demo/terminology/bootflat/scss/bootflat/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/bootflat/scss/bootflat/_list.scss -------------------------------------------------------------------------------- /demo/terminology/bootflat/scss/bootflat/_pill.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/bootflat/scss/bootflat/_pill.scss -------------------------------------------------------------------------------- /demo/terminology/bootflat/scss/bootflat/_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/bootflat/scss/bootflat/_tab.scss -------------------------------------------------------------------------------- /demo/terminology/bootflat/scss/bootflat/_well.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/bootflat/scss/bootflat/_well.scss -------------------------------------------------------------------------------- /demo/terminology/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/css/bootstrap.min.css -------------------------------------------------------------------------------- /demo/terminology/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/css/font-awesome.css -------------------------------------------------------------------------------- /demo/terminology/css/terminologies.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/css/terminologies.css -------------------------------------------------------------------------------- /demo/terminology/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /demo/terminology/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /demo/terminology/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /demo/terminology/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /demo/terminology/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /demo/terminology/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/js/bootstrap.min.js -------------------------------------------------------------------------------- /demo/terminology/js/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/js/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /demo/terminology/js/jquery-2.1.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/js/jquery-2.1.1.min.map -------------------------------------------------------------------------------- /demo/terminology/js/jquery-ui-1.10.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/js/jquery-ui-1.10.4.min.js -------------------------------------------------------------------------------- /demo/terminology/js/terminologies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/js/terminologies.js -------------------------------------------------------------------------------- /demo/terminology/jsTree/jstree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/jsTree/jstree.min.js -------------------------------------------------------------------------------- /demo/terminology/jsTree/themes/default/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/jsTree/themes/default/32px.png -------------------------------------------------------------------------------- /demo/terminology/jsTree/themes/default/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/jsTree/themes/default/40px.png -------------------------------------------------------------------------------- /demo/terminology/jsTree/themes/default/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/jsTree/themes/default/style.css -------------------------------------------------------------------------------- /demo/terminology/terminologies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/demo/terminology/terminologies.html -------------------------------------------------------------------------------- /openep/tm-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/openep/tm-api/pom.xml -------------------------------------------------------------------------------- /openep/tm-api/tm-core-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/openep/tm-api/tm-core-api/pom.xml -------------------------------------------------------------------------------- /openep/tm-api/tm-demographics-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/openep/tm-api/tm-demographics-api/pom.xml -------------------------------------------------------------------------------- /openep/tm-api/tm-externals-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/openep/tm-api/tm-externals-api/pom.xml -------------------------------------------------------------------------------- /openep/tm-api/tm-medical-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/openep/tm-api/tm-medical-api/pom.xml -------------------------------------------------------------------------------- /openep/tm-api/tm-medications-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/openep/tm-api/tm-medications-api/pom.xml -------------------------------------------------------------------------------- /openep/tm-api/tm-patient-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/openep/tm-api/tm-patient-api/pom.xml -------------------------------------------------------------------------------- /openep/tm-fdb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/openep/tm-fdb/pom.xml -------------------------------------------------------------------------------- /openep/tm-fdb/tm-fdb-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/openep/tm-fdb/tm-fdb-common/pom.xml -------------------------------------------------------------------------------- /openep/tm-fdb/tm-fdb-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/openep/tm-fdb/tm-fdb-server/pom.xml -------------------------------------------------------------------------------- /openep/tm-medications-external/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/openep/tm-medications-external/pom.xml -------------------------------------------------------------------------------- /openep/tm-medications/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/openep/tm-medications/pom.xml -------------------------------------------------------------------------------- /openep/tm-medications/tm-medications-rest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/openep/tm-medications/tm-medications-rest/pom.xml -------------------------------------------------------------------------------- /smart/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/pom.xml -------------------------------------------------------------------------------- /smart/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /smart/src/main/webapp/bp_centiles/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/bp_centiles/icon.png -------------------------------------------------------------------------------- /smart/src/main/webapp/bp_centiles/images/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/bp_centiles/images/i.png -------------------------------------------------------------------------------- /smart/src/main/webapp/bp_centiles/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/bp_centiles/images/print.png -------------------------------------------------------------------------------- /smart/src/main/webapp/bp_centiles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/bp_centiles/index.html -------------------------------------------------------------------------------- /smart/src/main/webapp/bp_centiles/js/bpc-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/bp_centiles/js/bpc-config.js -------------------------------------------------------------------------------- /smart/src/main/webapp/bp_centiles/js/bpc-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/bp_centiles/js/bpc-data.js -------------------------------------------------------------------------------- /smart/src/main/webapp/bp_centiles/js/bpc-graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/bp_centiles/js/bpc-graph.js -------------------------------------------------------------------------------- /smart/src/main/webapp/bp_centiles/js/bpc-print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/bp_centiles/js/bpc-print.js -------------------------------------------------------------------------------- /smart/src/main/webapp/bp_centiles/js/bpc-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/bp_centiles/js/bpc-ui.js -------------------------------------------------------------------------------- /smart/src/main/webapp/bp_centiles/js/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/bp_centiles/js/lib/jquery.js -------------------------------------------------------------------------------- /smart/src/main/webapp/bp_centiles/js/lib/xdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/bp_centiles/js/lib/xdate.js -------------------------------------------------------------------------------- /smart/src/main/webapp/bp_centiles/js/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/bp_centiles/js/popup.js -------------------------------------------------------------------------------- /smart/src/main/webapp/bp_centiles/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/bp_centiles/js/util.js -------------------------------------------------------------------------------- /smart/src/main/webapp/bp_centiles/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/bp_centiles/print.html -------------------------------------------------------------------------------- /smart/src/main/webapp/cardio_risk_viz/3001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/cardio_risk_viz/3001.xml -------------------------------------------------------------------------------- /smart/src/main/webapp/cardio_risk_viz/g.raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/cardio_risk_viz/g.raphael.js -------------------------------------------------------------------------------- /smart/src/main/webapp/cardio_risk_viz/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/cardio_risk_viz/icon.png -------------------------------------------------------------------------------- /smart/src/main/webapp/cardio_risk_viz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/cardio_risk_viz/index.html -------------------------------------------------------------------------------- /smart/src/main/webapp/cardio_risk_viz/load_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/cardio_risk_viz/load_data.js -------------------------------------------------------------------------------- /smart/src/main/webapp/cardio_risk_viz/raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/cardio_risk_viz/raphael.js -------------------------------------------------------------------------------- /smart/src/main/webapp/cardio_risk_viz/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/cardio_risk_viz/readme.txt -------------------------------------------------------------------------------- /smart/src/main/webapp/got_statins/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/got_statins/icon.png -------------------------------------------------------------------------------- /smart/src/main/webapp/got_statins/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/got_statins/index.html -------------------------------------------------------------------------------- /smart/src/main/webapp/got_statins/sparql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/got_statins/sparql.js -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/README.md -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/css/print.css -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/css/reset.css -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/css/style.css -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/css/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/css/style.less -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/img/close.png -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/img/icon.png -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/img/icons.png -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/img/info.png -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/img/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/img/page.png -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/img/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/img/print.png -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/index.html -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/js/gc-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/js/gc-app.js -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/js/gc-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/js/gc-chart.js -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/js/gc-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/js/gc-model.js -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/js/print2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/js/print2.js -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/js/util.js -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/lib/jquery.js -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/lib/raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/lib/raphael.js -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/lib/xdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/lib/xdate.js -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/growth_charts/license.txt -------------------------------------------------------------------------------- /smart/src/main/webapp/growth_charts/tests/test-utils.js: -------------------------------------------------------------------------------- 1 | // tests.js 2 | -------------------------------------------------------------------------------- /smart/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/index.html -------------------------------------------------------------------------------- /smart/src/main/webapp/js/jschannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/js/jschannel.js -------------------------------------------------------------------------------- /smart/src/main/webapp/js/smart-api-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/js/smart-api-container.js -------------------------------------------------------------------------------- /smart/src/main/webapp/js/smart-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/js/smart-container.js -------------------------------------------------------------------------------- /smart/src/main/webapp/js/sparql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/js/sparql.js -------------------------------------------------------------------------------- /smart/src/main/webapp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/manifest.json -------------------------------------------------------------------------------- /smart/src/main/webapp/sample_meds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/smart/src/main/webapp/sample_meds.xml -------------------------------------------------------------------------------- /util/aql-format/CodeMirror/mode/aql/aql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/util/aql-format/CodeMirror/mode/aql/aql.js -------------------------------------------------------------------------------- /util/aql-format/CodeMirror/theme/ehrexplorer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/util/aql-format/CodeMirror/theme/ehrexplorer.css -------------------------------------------------------------------------------- /util/aql-format/aql-format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/util/aql-format/aql-format.html -------------------------------------------------------------------------------- /util/aql-format/aql-format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/util/aql-format/aql-format.js -------------------------------------------------------------------------------- /util/aql-format/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehrscape/examples/HEAD/util/aql-format/readme.txt --------------------------------------------------------------------------------