├── LICENSE ├── chapter01-intro ├── HelloCordova1 │ └── index.html ├── HelloCordova2 │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ └── index.html └── readme.md ├── chapter02-accelerometer ├── Ex02.1 │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ └── index.html ├── Ex02.2 │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ └── index.html └── readme.md ├── chapter03-camera ├── Ex03.1 │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ └── index.html ├── Ex03.2 │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ └── index.html ├── Ex03.3 │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ └── index.html ├── Ex03.4 │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ └── index.html └── readme.md ├── chapter04-capture ├── Ex04.1 │ ├── MIT-LICENSE.txt │ ├── images │ │ ├── ajax-loader.gif │ │ ├── icons-18-black.png │ │ ├── icons-18-white.png │ │ ├── icons-36-black.png │ │ └── icons-36-white.png │ ├── index.html │ ├── jquery-2.0.3.min.js │ ├── jquery.mobile-1.3.2.min.css │ └── jquery.mobile-1.3.2.min.js └── readme.md ├── chapter05-compass ├── Ex05.1 │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ └── index.html ├── Ex05.2 │ ├── Corel Auto-Preserve │ │ └── compass.png │ ├── MIT-LICENSE.txt │ ├── Topcoat License │ ├── compass.png │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ ├── index.html │ ├── jQueryRotateCompressed.js │ └── jquery-2.0.3.min.js └── readme.md ├── chapter06-connection ├── Ex06.1 │ ├── MIT-LICENSE.txt │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ ├── index.html │ └── jquery-2.0.3.min.js └── readme.md ├── chapter07-contacts ├── Ex07.1 │ ├── MIT-LICENSE.txt │ ├── contacts │ │ ├── eidle.js │ │ ├── gchapman.js │ │ ├── jcleese.js │ │ ├── mpalin.js │ │ ├── tgilliam.js │ │ └── tjones.js │ ├── images │ │ ├── ajax-loader.gif │ │ ├── icons-18-black.png │ │ ├── icons-18-white.png │ │ ├── icons-36-black.png │ │ └── icons-36-white.png │ ├── index.html │ ├── jquery-2.0.3.min.js │ ├── jquery.mobile-1.3.2.min.css │ └── jquery.mobile-1.3.2.min.js ├── Ex07.2 │ ├── MIT-LICENSE.txt │ ├── contacts │ │ ├── eidle.js │ │ ├── gchapman.js │ │ ├── jcleese.js │ │ ├── mpalin.js │ │ ├── tgilliam.js │ │ └── tjones.js │ ├── images │ │ ├── ajax-loader.gif │ │ ├── icons-18-black.png │ │ ├── icons-18-white.png │ │ ├── icons-36-black.png │ │ └── icons-36-white.png │ ├── index.html │ ├── index.js │ ├── jquery-2.0.3.min.js │ ├── jquery.mobile-1.3.2.min.css │ └── jquery.mobile-1.3.2.min.js └── readme.md ├── chapter09-events ├── Ex09.1 │ └── index.html ├── Ex09.2 │ ├── MIT-LICENSE.txt │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ ├── index.html │ └── jquery-2.0.3.min.js ├── Ex09.3 │ ├── MIT-LICENSE.txt │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ ├── index.html │ └── jquery-2.0.3.min.js ├── Ex09.4 │ ├── MIT-LICENSE.txt │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ ├── index.html │ └── jquery-2.0.3.min.js ├── Ex09.5 │ ├── MIT-LICENSE.txt │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ ├── index.html │ └── jquery-2.0.3.min.js └── readme.md ├── chapter10-file ├── Ex10.1 │ ├── MIT-LICENSE.txt │ ├── images │ │ ├── ajax-loader.gif │ │ ├── ajax-loader.png │ │ ├── icon-search-black.png │ │ ├── icons-18-black.png │ │ ├── icons-18-white.png │ │ ├── icons-36-black.png │ │ └── icons-36-white.png │ ├── index.html │ ├── index.js │ ├── jquery-1.9.1.min.js │ ├── jquery.mobile-1.3.2.min.css │ └── jquery.mobile-1.3.2.min.js ├── Ex10.2 │ ├── MIT-LICENSE.txt │ ├── continuousfilewriter.js │ ├── images │ │ ├── ajax-loader.gif │ │ ├── ajax-loader.png │ │ ├── icon-search-black.png │ │ ├── icons-18-black.png │ │ ├── icons-18-white.png │ │ ├── icons-36-black.png │ │ └── icons-36-white.png │ ├── index.html │ ├── index.js │ ├── jquery-1.9.1.min.js │ ├── jquery.mobile-1.3.2.min.css │ ├── jquery.mobile-1.3.2.min.js │ └── randomStr.js ├── Ex10.3-upload │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ ├── upload.html │ └── upload.php ├── Ex10.3 │ ├── Corel Auto-Preserve │ │ └── compass.png │ ├── MIT-LICENSE.txt │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ ├── index.html │ ├── index.js │ └── jquery-2.0.3.min.js └── readme.md ├── chapter11-geolocation ├── Ex11.1 │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ └── index.html ├── Ex11.2 │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ └── index.html └── readme.md ├── chapter12-globalization ├── Ex12.1 │ ├── MIT-LICENSE.txt │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ ├── index.html │ └── jquery-1.9.1.min.js ├── Ex12.2 │ ├── MIT-LICENSE.txt │ ├── images │ │ ├── ajax-loader.gif │ │ ├── ajax-loader.png │ │ ├── icon-search-black.png │ │ ├── icons-18-black.png │ │ ├── icons-18-white.png │ │ ├── icons-36-black.png │ │ └── icons-36-white.png │ ├── index.html │ ├── index.js │ ├── jquery-1.9.1.min.js │ ├── jquery.mobile-1.3.2.min.css │ └── jquery.mobile-1.3.2.min.js └── readme.md ├── chapter13-inappbrowser ├── Ex13.1 │ ├── MIT-LICENSE.txt │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── help.html │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ ├── index.html │ ├── index.js │ └── jquery-1.9.1.min.js └── readme.md ├── chapter14-media ├── Ex14.1 │ ├── MIT-LICENSE.txt │ ├── images │ │ ├── ajax-loader.gif │ │ ├── ajax-loader.png │ │ ├── icon-search-black.png │ │ ├── icons-18-black.png │ │ ├── icons-18-white.png │ │ ├── icons-36-black.png │ │ └── icons-36-white.png │ ├── index.html │ ├── index.js │ ├── jquery-1.9.1.min.js │ ├── jquery.mobile-1.3.2.min.css │ ├── jquery.mobile-1.3.2.min.js │ └── sample.m4a ├── Ex14.2 │ ├── MIT-LICENSE.txt │ ├── images │ │ ├── ajax-loader.gif │ │ ├── ajax-loader.png │ │ ├── icon-search-black.png │ │ ├── icons-18-black.png │ │ ├── icons-18-white.png │ │ ├── icons-36-black.png │ │ └── icons-36-white.png │ ├── index.html │ ├── index.js │ ├── jquery-1.9.1.min.js │ ├── jquery.mobile-1.3.2.min.css │ └── jquery.mobile-1.3.2.min.js └── readme.md ├── chapter15-notification ├── Ex15.1 │ ├── MIT-LICENSE.txt │ ├── images │ │ ├── ajax-loader.gif │ │ ├── ajax-loader.png │ │ ├── icon-search-black.png │ │ ├── icons-18-black.png │ │ ├── icons-18-white.png │ │ ├── icons-36-black.png │ │ └── icons-36-white.png │ ├── index.html │ ├── index.js │ ├── jquery-1.9.1.min.js │ ├── jquery.mobile-1.3.2.min.css │ └── jquery.mobile-1.3.2.min.js └── readme.md ├── chapter16-splashscreen ├── Ex16.1 │ ├── Topcoat License │ ├── css │ │ ├── topcoat-desktop-dark.css │ │ ├── topcoat-desktop-dark.min.css │ │ ├── topcoat-desktop-light.css │ │ ├── topcoat-desktop-light.min.css │ │ ├── topcoat-mobile-dark.css │ │ ├── topcoat-mobile-dark.min.css │ │ ├── topcoat-mobile-light.css │ │ └── topcoat-mobile-light.min.css │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ ├── img │ │ ├── avatar.png │ │ ├── bg_dark.png │ │ ├── breadcrumb.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_dark.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_dark.png │ │ ├── checkmark_bw.svg │ │ ├── dark-combo-box-bg.png │ │ ├── dark-combo-box-bg2x.png │ │ ├── dark-grips.png │ │ ├── dark-sprites2x.png │ │ ├── dialog-zone-bg.png │ │ ├── drop-down-triangle-dark.png │ │ ├── drop-down-triangle.png │ │ ├── hamburger_bw.svg │ │ ├── hamburger_dark.svg │ │ ├── hamburger_light.svg │ │ ├── light-combo-box-bg.png │ │ ├── light-combo-box-bg2x.png │ │ ├── light-grips.png │ │ ├── light-sprites2x.png │ │ ├── pop-up-triangle-dark.png │ │ ├── pop-up-triangle.png │ │ ├── search-bg.png │ │ ├── search-bg2x.png │ │ ├── search.svg │ │ ├── search_bw.svg │ │ ├── search_dark.svg │ │ ├── search_light.svg │ │ ├── spinner.png │ │ └── spinner2x.png │ └── index.html └── readme.md └── readme.md /chapter01-intro/HelloCordova2/font/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/font/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/font/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/font/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/avatar.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/bg_dark.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/checkbox_unchecked.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/dark-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/dark-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/dark-grips.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/drop-down-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/drop-down-triangle.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/light-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/light-combo-box-bg.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/light-grips.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/search-bg.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/spinner.png -------------------------------------------------------------------------------- /chapter01-intro/HelloCordova2/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter01-intro/HelloCordova2/img/spinner2x.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/avatar.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/bg_dark.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/checkbox_unchecked.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/dark-grips.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/drop-down-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/drop-down-triangle.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/light-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/light-combo-box-bg.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/light-grips.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/search-bg.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/spinner.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.1/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.1/img/spinner2x.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/avatar.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/bg_dark.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/checkbox_unchecked.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/dark-grips.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/drop-down-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/drop-down-triangle.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/light-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/light-combo-box-bg.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/light-grips.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/search-bg.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/spinner.png -------------------------------------------------------------------------------- /chapter02-accelerometer/Ex02.2/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter02-accelerometer/Ex02.2/img/spinner2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceCodePro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceCodePro-Black.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceCodePro-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceCodePro-ExtraLight.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceCodePro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceCodePro-Light.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceCodePro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceCodePro-Semibold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceSansPro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceSansPro-Black.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceSansPro-BlackIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceSansPro-BlackIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceSansPro-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceSansPro-ExtraLight.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceSansPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceSansPro-Light.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceSansPro-LightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceSansPro-LightIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceSansPro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceSansPro-Semibold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/font/SourceSansPro-SemiboldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/font/SourceSansPro-SemiboldIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/avatar.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/bg_dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/checkbox_checked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/checkbox_checked_dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/checkbox_unchecked.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/checkbox_unchecked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/checkbox_unchecked_dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/dark-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/dark-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/dark-grips.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/drop-down-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/drop-down-triangle-dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/drop-down-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/drop-down-triangle.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/light-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/light-combo-box-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/light-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/light-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/light-grips.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/pop-up-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/pop-up-triangle-dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/search-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/spinner.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.1/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.1/img/spinner2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceCodePro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceCodePro-Black.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceCodePro-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceCodePro-ExtraLight.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceCodePro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceCodePro-Light.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceCodePro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceCodePro-Semibold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceSansPro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceSansPro-Black.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceSansPro-BlackIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceSansPro-BlackIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceSansPro-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceSansPro-ExtraLight.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceSansPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceSansPro-Light.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceSansPro-LightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceSansPro-LightIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceSansPro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceSansPro-Semibold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/font/SourceSansPro-SemiboldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/font/SourceSansPro-SemiboldIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/avatar.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/bg_dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/checkbox_checked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/checkbox_checked_dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/checkbox_unchecked.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/checkbox_unchecked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/checkbox_unchecked_dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/dark-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/dark-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/dark-grips.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/drop-down-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/drop-down-triangle-dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/drop-down-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/drop-down-triangle.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/light-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/light-combo-box-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/light-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/light-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/light-grips.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/pop-up-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/pop-up-triangle-dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/search-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/spinner.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.2/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.2/img/spinner2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceCodePro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceCodePro-Black.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceCodePro-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceCodePro-ExtraLight.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceCodePro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceCodePro-Light.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceCodePro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceCodePro-Semibold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceSansPro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceSansPro-Black.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceSansPro-BlackIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceSansPro-BlackIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceSansPro-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceSansPro-ExtraLight.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceSansPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceSansPro-Light.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceSansPro-LightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceSansPro-LightIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceSansPro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceSansPro-Semibold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/font/SourceSansPro-SemiboldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/font/SourceSansPro-SemiboldIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/avatar.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/bg_dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/checkbox_checked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/checkbox_checked_dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/checkbox_unchecked.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/checkbox_unchecked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/checkbox_unchecked_dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/dark-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/dark-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/dark-grips.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/drop-down-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/drop-down-triangle-dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/drop-down-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/drop-down-triangle.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/light-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/light-combo-box-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/light-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/light-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/light-grips.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/pop-up-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/pop-up-triangle-dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/search-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/spinner.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.3/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.3/img/spinner2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceCodePro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceCodePro-Black.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceCodePro-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceCodePro-ExtraLight.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceCodePro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceCodePro-Light.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceCodePro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceCodePro-Semibold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceSansPro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceSansPro-Black.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceSansPro-BlackIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceSansPro-BlackIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceSansPro-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceSansPro-ExtraLight.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceSansPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceSansPro-Light.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceSansPro-LightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceSansPro-LightIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceSansPro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceSansPro-Semibold.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/font/SourceSansPro-SemiboldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/font/SourceSansPro-SemiboldIt.otf -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/avatar.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/bg_dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/checkbox_checked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/checkbox_checked_dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/checkbox_unchecked.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/checkbox_unchecked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/checkbox_unchecked_dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/dark-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/dark-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/dark-grips.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/drop-down-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/drop-down-triangle-dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/drop-down-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/drop-down-triangle.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/light-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/light-combo-box-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/light-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/light-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/light-grips.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/pop-up-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/pop-up-triangle-dark.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/search-bg.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/spinner.png -------------------------------------------------------------------------------- /chapter03-camera/Ex03.4/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter03-camera/Ex03.4/img/spinner2x.png -------------------------------------------------------------------------------- /chapter04-capture/Ex04.1/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter04-capture/Ex04.1/images/ajax-loader.gif -------------------------------------------------------------------------------- /chapter04-capture/Ex04.1/images/icons-18-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter04-capture/Ex04.1/images/icons-18-black.png -------------------------------------------------------------------------------- /chapter04-capture/Ex04.1/images/icons-18-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter04-capture/Ex04.1/images/icons-18-white.png -------------------------------------------------------------------------------- /chapter04-capture/Ex04.1/images/icons-36-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter04-capture/Ex04.1/images/icons-36-black.png -------------------------------------------------------------------------------- /chapter04-capture/Ex04.1/images/icons-36-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter04-capture/Ex04.1/images/icons-36-white.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/font/SourceCodePro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/font/SourceCodePro-Black.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/font/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/font/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/font/SourceCodePro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/font/SourceCodePro-Light.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/font/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/font/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/font/SourceCodePro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/font/SourceCodePro-Semibold.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/font/SourceSansPro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/font/SourceSansPro-Black.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/font/SourceSansPro-BlackIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/font/SourceSansPro-BlackIt.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/font/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/font/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/font/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/font/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/font/SourceSansPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/font/SourceSansPro-Light.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/font/SourceSansPro-LightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/font/SourceSansPro-LightIt.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/font/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/font/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/font/SourceSansPro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/font/SourceSansPro-Semibold.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/avatar.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/bg_dark.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/checkbox_checked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/checkbox_checked_dark.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/checkbox_unchecked.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/checkbox_unchecked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/checkbox_unchecked_dark.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/dark-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/dark-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/dark-grips.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/drop-down-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/drop-down-triangle-dark.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/drop-down-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/drop-down-triangle.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/light-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/light-combo-box-bg.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/light-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/light-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/light-grips.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/pop-up-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/pop-up-triangle-dark.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/search-bg.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/spinner.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.1/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.1/img/spinner2x.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/Corel Auto-Preserve/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/Corel Auto-Preserve/compass.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/compass.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/font/SourceCodePro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/font/SourceCodePro-Black.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/font/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/font/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/font/SourceCodePro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/font/SourceCodePro-Light.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/font/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/font/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/font/SourceCodePro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/font/SourceCodePro-Semibold.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/font/SourceSansPro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/font/SourceSansPro-Black.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/font/SourceSansPro-BlackIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/font/SourceSansPro-BlackIt.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/font/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/font/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/font/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/font/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/font/SourceSansPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/font/SourceSansPro-Light.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/font/SourceSansPro-LightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/font/SourceSansPro-LightIt.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/font/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/font/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/font/SourceSansPro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/font/SourceSansPro-Semibold.otf -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/avatar.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/bg_dark.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/checkbox_checked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/checkbox_checked_dark.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/checkbox_unchecked.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/checkbox_unchecked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/checkbox_unchecked_dark.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/dark-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/dark-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/dark-grips.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/drop-down-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/drop-down-triangle-dark.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/drop-down-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/drop-down-triangle.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/light-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/light-combo-box-bg.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/light-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/light-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/light-grips.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/pop-up-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/pop-up-triangle-dark.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/search-bg.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/spinner.png -------------------------------------------------------------------------------- /chapter05-compass/Ex05.2/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter05-compass/Ex05.2/img/spinner2x.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/font/SourceCodePro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/font/SourceCodePro-Black.otf -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/font/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/font/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/font/SourceCodePro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/font/SourceCodePro-Light.otf -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/font/SourceSansPro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/font/SourceSansPro-Black.otf -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/font/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/font/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/font/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/font/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/font/SourceSansPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/font/SourceSansPro-Light.otf -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/avatar.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/bg_dark.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/checkbox_checked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/checkbox_checked_dark.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/checkbox_unchecked.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/dark-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/dark-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/dark-grips.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/drop-down-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/drop-down-triangle.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/light-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/light-combo-box-bg.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/light-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/light-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/light-grips.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/pop-up-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/pop-up-triangle-dark.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/search-bg.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/spinner.png -------------------------------------------------------------------------------- /chapter06-connection/Ex06.1/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter06-connection/Ex06.1/img/spinner2x.png -------------------------------------------------------------------------------- /chapter07-contacts/Ex07.1/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter07-contacts/Ex07.1/images/ajax-loader.gif -------------------------------------------------------------------------------- /chapter07-contacts/Ex07.1/images/icons-18-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter07-contacts/Ex07.1/images/icons-18-black.png -------------------------------------------------------------------------------- /chapter07-contacts/Ex07.1/images/icons-18-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter07-contacts/Ex07.1/images/icons-18-white.png -------------------------------------------------------------------------------- /chapter07-contacts/Ex07.1/images/icons-36-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter07-contacts/Ex07.1/images/icons-36-black.png -------------------------------------------------------------------------------- /chapter07-contacts/Ex07.1/images/icons-36-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter07-contacts/Ex07.1/images/icons-36-white.png -------------------------------------------------------------------------------- /chapter07-contacts/Ex07.2/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter07-contacts/Ex07.2/images/ajax-loader.gif -------------------------------------------------------------------------------- /chapter07-contacts/Ex07.2/images/icons-18-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter07-contacts/Ex07.2/images/icons-18-black.png -------------------------------------------------------------------------------- /chapter07-contacts/Ex07.2/images/icons-18-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter07-contacts/Ex07.2/images/icons-18-white.png -------------------------------------------------------------------------------- /chapter07-contacts/Ex07.2/images/icons-36-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter07-contacts/Ex07.2/images/icons-36-black.png -------------------------------------------------------------------------------- /chapter07-contacts/Ex07.2/images/icons-36-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter07-contacts/Ex07.2/images/icons-36-white.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/font/SourceCodePro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/font/SourceCodePro-Black.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/font/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/font/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/font/SourceCodePro-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/font/SourceCodePro-ExtraLight.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/font/SourceCodePro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/font/SourceCodePro-Light.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/font/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/font/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/font/SourceCodePro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/font/SourceCodePro-Semibold.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/font/SourceSansPro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/font/SourceSansPro-Black.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/font/SourceSansPro-BlackIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/font/SourceSansPro-BlackIt.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/font/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/font/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/font/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/font/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/font/SourceSansPro-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/font/SourceSansPro-ExtraLight.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/font/SourceSansPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/font/SourceSansPro-Light.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/font/SourceSansPro-LightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/font/SourceSansPro-LightIt.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/font/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/font/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/avatar.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/bg_dark.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/checkbox_checked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/checkbox_checked_dark.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/checkbox_unchecked.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/dark-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/dark-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/dark-grips.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/drop-down-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/drop-down-triangle.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/light-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/light-combo-box-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/light-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/light-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/light-grips.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/pop-up-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/pop-up-triangle-dark.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/search-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/spinner.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.2/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.2/img/spinner2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/font/SourceCodePro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/font/SourceCodePro-Black.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/font/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/font/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/font/SourceCodePro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/font/SourceCodePro-Light.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/font/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/font/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/font/SourceSansPro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/font/SourceSansPro-Black.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/font/SourceSansPro-BlackIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/font/SourceSansPro-BlackIt.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/font/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/font/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/font/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/font/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/font/SourceSansPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/font/SourceSansPro-Light.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/font/SourceSansPro-LightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/font/SourceSansPro-LightIt.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/font/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/font/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/avatar.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/bg_dark.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/checkbox_checked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/checkbox_checked_dark.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/checkbox_unchecked.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/dark-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/dark-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/dark-grips.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/drop-down-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/drop-down-triangle.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/light-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/light-combo-box-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/light-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/light-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/light-grips.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/pop-up-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/pop-up-triangle-dark.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/search-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/spinner.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.3/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.3/img/spinner2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/font/SourceCodePro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/font/SourceCodePro-Black.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/font/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/font/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/font/SourceCodePro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/font/SourceCodePro-Light.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/font/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/font/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/font/SourceSansPro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/font/SourceSansPro-Black.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/font/SourceSansPro-BlackIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/font/SourceSansPro-BlackIt.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/font/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/font/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/font/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/font/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/font/SourceSansPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/font/SourceSansPro-Light.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/font/SourceSansPro-LightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/font/SourceSansPro-LightIt.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/font/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/font/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/avatar.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/bg_dark.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/checkbox_checked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/checkbox_checked_dark.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/checkbox_unchecked.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/dark-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/dark-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/dark-grips.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/drop-down-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/drop-down-triangle.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/light-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/light-combo-box-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/light-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/light-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/light-grips.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/pop-up-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/pop-up-triangle-dark.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/search-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/spinner.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.4/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.4/img/spinner2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/font/SourceCodePro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/font/SourceCodePro-Black.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/font/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/font/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/font/SourceCodePro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/font/SourceCodePro-Light.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/font/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/font/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/font/SourceSansPro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/font/SourceSansPro-Black.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/font/SourceSansPro-BlackIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/font/SourceSansPro-BlackIt.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/font/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/font/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/font/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/font/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/font/SourceSansPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/font/SourceSansPro-Light.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/font/SourceSansPro-LightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/font/SourceSansPro-LightIt.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/font/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/font/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/avatar.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/bg_dark.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/checkbox_checked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/checkbox_checked_dark.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/checkbox_unchecked.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/dark-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/dark-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/dark-grips.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/drop-down-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/drop-down-triangle.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/light-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/light-combo-box-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/light-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/light-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/light-grips.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/pop-up-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/pop-up-triangle-dark.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/search-bg.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/spinner.png -------------------------------------------------------------------------------- /chapter09-events/Ex09.5/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter09-events/Ex09.5/img/spinner2x.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.1/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.1/images/ajax-loader.gif -------------------------------------------------------------------------------- /chapter10-file/Ex10.1/images/ajax-loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.1/images/ajax-loader.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.1/images/icon-search-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.1/images/icon-search-black.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.1/images/icons-18-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.1/images/icons-18-black.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.1/images/icons-18-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.1/images/icons-18-white.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.1/images/icons-36-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.1/images/icons-36-black.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.1/images/icons-36-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.1/images/icons-36-white.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.2/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.2/images/ajax-loader.gif -------------------------------------------------------------------------------- /chapter10-file/Ex10.2/images/ajax-loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.2/images/ajax-loader.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.2/images/icon-search-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.2/images/icon-search-black.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.2/images/icons-18-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.2/images/icons-18-black.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.2/images/icons-18-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.2/images/icons-18-white.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.2/images/icons-36-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.2/images/icons-36-black.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.2/images/icons-36-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.2/images/icons-36-white.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/img/avatar.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/img/bg_dark.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/img/dark-grips.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/img/light-grips.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/img/search-bg.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/img/spinner.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3-upload/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3-upload/img/spinner2x.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/Corel Auto-Preserve/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/Corel Auto-Preserve/compass.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/font/SourceCodePro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/font/SourceCodePro-Black.otf -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/font/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/font/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/font/SourceCodePro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/font/SourceCodePro-Light.otf -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/font/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/font/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/font/SourceCodePro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/font/SourceCodePro-Semibold.otf -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/font/SourceSansPro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/font/SourceSansPro-Black.otf -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/font/SourceSansPro-BlackIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/font/SourceSansPro-BlackIt.otf -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/font/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/font/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/font/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/font/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/font/SourceSansPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/font/SourceSansPro-Light.otf -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/font/SourceSansPro-LightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/font/SourceSansPro-LightIt.otf -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/font/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/font/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/font/SourceSansPro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/font/SourceSansPro-Semibold.otf -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/avatar.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/bg_dark.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/checkbox_checked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/checkbox_checked_dark.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/checkbox_unchecked.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/checkbox_unchecked_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/checkbox_unchecked_dark.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/dark-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/dark-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/dark-grips.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/drop-down-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/drop-down-triangle-dark.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/drop-down-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/drop-down-triangle.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/light-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/light-combo-box-bg.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/light-combo-box-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/light-combo-box-bg2x.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/light-grips.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/pop-up-triangle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/pop-up-triangle-dark.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/search-bg.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/spinner.png -------------------------------------------------------------------------------- /chapter10-file/Ex10.3/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter10-file/Ex10.3/img/spinner2x.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/img/avatar.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/img/bg_dark.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/img/dark-grips.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/img/light-grips.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/img/search-bg.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/img/spinner.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.1/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.1/img/spinner2x.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/img/avatar.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/img/bg_dark.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/img/dark-combo-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/img/dark-combo-box-bg.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/img/dark-grips.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/img/light-grips.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/img/search-bg.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/img/spinner.png -------------------------------------------------------------------------------- /chapter11-geolocation/Ex11.2/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter11-geolocation/Ex11.2/img/spinner2x.png -------------------------------------------------------------------------------- /chapter12-globalization/Ex12.1/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter12-globalization/Ex12.1/img/avatar.png -------------------------------------------------------------------------------- /chapter12-globalization/Ex12.1/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter12-globalization/Ex12.1/img/bg_dark.png -------------------------------------------------------------------------------- /chapter12-globalization/Ex12.1/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter12-globalization/Ex12.1/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter12-globalization/Ex12.1/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter12-globalization/Ex12.1/img/dark-grips.png -------------------------------------------------------------------------------- /chapter12-globalization/Ex12.1/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter12-globalization/Ex12.1/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter12-globalization/Ex12.1/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter12-globalization/Ex12.1/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter12-globalization/Ex12.1/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter12-globalization/Ex12.1/img/light-grips.png -------------------------------------------------------------------------------- /chapter12-globalization/Ex12.1/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter12-globalization/Ex12.1/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter12-globalization/Ex12.1/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter12-globalization/Ex12.1/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter12-globalization/Ex12.1/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter12-globalization/Ex12.1/img/search-bg.png -------------------------------------------------------------------------------- /chapter12-globalization/Ex12.1/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter12-globalization/Ex12.1/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter12-globalization/Ex12.1/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter12-globalization/Ex12.1/img/spinner.png -------------------------------------------------------------------------------- /chapter12-globalization/Ex12.1/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter12-globalization/Ex12.1/img/spinner2x.png -------------------------------------------------------------------------------- /chapter12-globalization/Ex12.2/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter12-globalization/Ex12.2/images/ajax-loader.gif -------------------------------------------------------------------------------- /chapter12-globalization/Ex12.2/images/ajax-loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter12-globalization/Ex12.2/images/ajax-loader.png -------------------------------------------------------------------------------- /chapter13-inappbrowser/Ex13.1/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter13-inappbrowser/Ex13.1/img/avatar.png -------------------------------------------------------------------------------- /chapter13-inappbrowser/Ex13.1/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter13-inappbrowser/Ex13.1/img/bg_dark.png -------------------------------------------------------------------------------- /chapter13-inappbrowser/Ex13.1/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter13-inappbrowser/Ex13.1/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter13-inappbrowser/Ex13.1/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter13-inappbrowser/Ex13.1/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter13-inappbrowser/Ex13.1/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter13-inappbrowser/Ex13.1/img/dark-grips.png -------------------------------------------------------------------------------- /chapter13-inappbrowser/Ex13.1/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter13-inappbrowser/Ex13.1/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter13-inappbrowser/Ex13.1/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter13-inappbrowser/Ex13.1/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter13-inappbrowser/Ex13.1/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter13-inappbrowser/Ex13.1/img/light-grips.png -------------------------------------------------------------------------------- /chapter13-inappbrowser/Ex13.1/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter13-inappbrowser/Ex13.1/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter13-inappbrowser/Ex13.1/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter13-inappbrowser/Ex13.1/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter13-inappbrowser/Ex13.1/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter13-inappbrowser/Ex13.1/img/search-bg.png -------------------------------------------------------------------------------- /chapter13-inappbrowser/Ex13.1/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter13-inappbrowser/Ex13.1/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter13-inappbrowser/Ex13.1/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter13-inappbrowser/Ex13.1/img/spinner.png -------------------------------------------------------------------------------- /chapter13-inappbrowser/Ex13.1/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter13-inappbrowser/Ex13.1/img/spinner2x.png -------------------------------------------------------------------------------- /chapter14-media/Ex14.1/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter14-media/Ex14.1/images/ajax-loader.gif -------------------------------------------------------------------------------- /chapter14-media/Ex14.1/images/ajax-loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter14-media/Ex14.1/images/ajax-loader.png -------------------------------------------------------------------------------- /chapter14-media/Ex14.1/images/icon-search-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter14-media/Ex14.1/images/icon-search-black.png -------------------------------------------------------------------------------- /chapter14-media/Ex14.1/images/icons-18-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter14-media/Ex14.1/images/icons-18-black.png -------------------------------------------------------------------------------- /chapter14-media/Ex14.1/images/icons-18-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter14-media/Ex14.1/images/icons-18-white.png -------------------------------------------------------------------------------- /chapter14-media/Ex14.1/images/icons-36-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter14-media/Ex14.1/images/icons-36-black.png -------------------------------------------------------------------------------- /chapter14-media/Ex14.1/images/icons-36-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter14-media/Ex14.1/images/icons-36-white.png -------------------------------------------------------------------------------- /chapter14-media/Ex14.1/sample.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter14-media/Ex14.1/sample.m4a -------------------------------------------------------------------------------- /chapter14-media/Ex14.2/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter14-media/Ex14.2/images/ajax-loader.gif -------------------------------------------------------------------------------- /chapter14-media/Ex14.2/images/ajax-loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter14-media/Ex14.2/images/ajax-loader.png -------------------------------------------------------------------------------- /chapter14-media/Ex14.2/images/icon-search-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter14-media/Ex14.2/images/icon-search-black.png -------------------------------------------------------------------------------- /chapter14-media/Ex14.2/images/icons-18-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter14-media/Ex14.2/images/icons-18-black.png -------------------------------------------------------------------------------- /chapter14-media/Ex14.2/images/icons-18-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter14-media/Ex14.2/images/icons-18-white.png -------------------------------------------------------------------------------- /chapter14-media/Ex14.2/images/icons-36-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter14-media/Ex14.2/images/icons-36-black.png -------------------------------------------------------------------------------- /chapter14-media/Ex14.2/images/icons-36-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter14-media/Ex14.2/images/icons-36-white.png -------------------------------------------------------------------------------- /chapter15-notification/Ex15.1/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter15-notification/Ex15.1/images/ajax-loader.gif -------------------------------------------------------------------------------- /chapter15-notification/Ex15.1/images/ajax-loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter15-notification/Ex15.1/images/ajax-loader.png -------------------------------------------------------------------------------- /chapter16-splashscreen/Ex16.1/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter16-splashscreen/Ex16.1/img/avatar.png -------------------------------------------------------------------------------- /chapter16-splashscreen/Ex16.1/img/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter16-splashscreen/Ex16.1/img/bg_dark.png -------------------------------------------------------------------------------- /chapter16-splashscreen/Ex16.1/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter16-splashscreen/Ex16.1/img/breadcrumb.png -------------------------------------------------------------------------------- /chapter16-splashscreen/Ex16.1/img/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter16-splashscreen/Ex16.1/img/checkbox_checked.png -------------------------------------------------------------------------------- /chapter16-splashscreen/Ex16.1/img/dark-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter16-splashscreen/Ex16.1/img/dark-grips.png -------------------------------------------------------------------------------- /chapter16-splashscreen/Ex16.1/img/dark-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter16-splashscreen/Ex16.1/img/dark-sprites2x.png -------------------------------------------------------------------------------- /chapter16-splashscreen/Ex16.1/img/dialog-zone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter16-splashscreen/Ex16.1/img/dialog-zone-bg.png -------------------------------------------------------------------------------- /chapter16-splashscreen/Ex16.1/img/light-grips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter16-splashscreen/Ex16.1/img/light-grips.png -------------------------------------------------------------------------------- /chapter16-splashscreen/Ex16.1/img/light-sprites2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter16-splashscreen/Ex16.1/img/light-sprites2x.png -------------------------------------------------------------------------------- /chapter16-splashscreen/Ex16.1/img/pop-up-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter16-splashscreen/Ex16.1/img/pop-up-triangle.png -------------------------------------------------------------------------------- /chapter16-splashscreen/Ex16.1/img/search-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter16-splashscreen/Ex16.1/img/search-bg.png -------------------------------------------------------------------------------- /chapter16-splashscreen/Ex16.1/img/search-bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter16-splashscreen/Ex16.1/img/search-bg2x.png -------------------------------------------------------------------------------- /chapter16-splashscreen/Ex16.1/img/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter16-splashscreen/Ex16.1/img/spinner.png -------------------------------------------------------------------------------- /chapter16-splashscreen/Ex16.1/img/spinner2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnwargo/apache-cordova-api-cookbook-code/82ce8fb84fc56658840327e8a19f47a459e45c8a/chapter16-splashscreen/Ex16.1/img/spinner2x.png --------------------------------------------------------------------------------