diff --git a/.gitignore b/.gitignore index a37b392be..257fdd435 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,6 @@ logs/* !.gitkeep node_modules/ tmp +.idea .DS_Store angular-phonecat-snapshots \ No newline at end of file diff --git a/app/css/animations.css b/app/css/animations.css new file mode 100644 index 000000000..46f3da6ec --- /dev/null +++ b/app/css/animations.css @@ -0,0 +1,97 @@ +/* + * animations css stylesheet + */ + +/* animate ngRepeat in phone listing */ + +.phone-listing.ng-enter, +.phone-listing.ng-leave, +.phone-listing.ng-move { + -webkit-transition: 0.5s linear all; + -moz-transition: 0.5s linear all; + -o-transition: 0.5s linear all; + transition: 0.5s linear all; +} + +.phone-listing.ng-enter, +.phone-listing.ng-move { + opacity: 0; + height: 0; + overflow: hidden; +} + +.phone-listing.ng-move.ng-move-active, +.phone-listing.ng-enter.ng-enter-active { + opacity: 1; + height: 120px; +} + +.phone-listing.ng-leave { + opacity: 1; + overflow: hidden; +} + +.phone-listing.ng-leave.ng-leave-active { + opacity: 0; + height: 0; + padding-top: 0; + padding-bottom: 0; +} + +/* cross fading between routes with ngView */ + +.view-container { + position: relative; +} + +.view-frame.ng-enter, +.view-frame.ng-leave { + background: white; + position: absolute; + top: 0; + left: 0; + right: 0; +} + +.view-frame.ng-enter { + -webkit-animation: 0.5s fade-in; + -moz-animation: 0.5s fade-in; + -o-animation: 0.5s fade-in; + animation: 0.5s fade-in; + z-index: 100; +} + +.view-frame.ng-leave { + -webkit-animation: 0.5s fade-out; + -moz-animation: 0.5s fade-out; + -o-animation: 0.5s fade-out; + animation: 0.5s fade-out; + z-index: 99; +} + +@keyframes fade-in { + from { opacity: 0; } + to { opacity: 1; } +} +@-moz-keyframes fade-in { + from { opacity: 0; } + to { opacity: 1; } +} +@-webkit-keyframes fade-in { + from { opacity: 0; } + to { opacity: 1; } +} + +@keyframes fade-out { + from { opacity: 1; } + to { opacity: 0; } +} +@-moz-keyframes fade-out { + from { opacity: 1; } + to { opacity: 0; } +} +@-webkit-keyframes fade-out { + from { opacity: 1; } + to { opacity: 0; } +} + diff --git a/app/css/app.css b/app/css/app.css index 8d3eae692..8e2ff4db1 100644 --- a/app/css/app.css +++ b/app/css/app.css @@ -1 +1,92 @@ /* app css stylesheet */ + +body { + padding-top: 20px; +} + + +.phone-images { + width: 450px; + height: 450px; + overflow: hidden; + position: relative; + float: left; +} + +.phones { + list-style: none; +} + +.thumb { + float: left; + margin: -1em 1em 1.5em 0em; + padding-bottom: 1em; + height: 100px; + width: 100px; +} + +.phones li { + clear: both; + height: 100px; + padding-top: 15px; +} + +/** Detail View **/ +img.phone { + float: left; + margin-right: 3em; + margin-bottom: 2em; + background-color: white; + padding: 2em; + height: 400px; + width: 400px; +} + +ul.phone-thumbs { + margin: 0; + list-style: none; +} + +ul.phone-thumbs li { + border: 1px solid black; + display: inline-block; + margin: 1em; + background-color: white; +} + +ul.phone-thumbs img { + height: 100px; + width: 100px; + padding: 1em; +} + +ul.phone-thumbs img:hover { + cursor: pointer; +} + + +ul.specs { + clear: both; + margin: 0; + padding: 0; + list-style: none; +} + +ul.specs > li{ + display: inline-block; + width: 200px; + vertical-align: top; +} + +ul.specs > li > span{ + font-weight: bold; + font-size: 1.2em; +} + +ul.specs dt { + font-weight: bold; +} + +h1 { + border-bottom: 1px solid gray; +} diff --git a/app/img/phones/dell-streak-7.0.jpg b/app/img/phones/dell-streak-7.0.jpg new file mode 100644 index 000000000..6ed0eea18 Binary files /dev/null and b/app/img/phones/dell-streak-7.0.jpg differ diff --git a/app/img/phones/dell-streak-7.1.jpg b/app/img/phones/dell-streak-7.1.jpg new file mode 100644 index 000000000..5c14774b8 Binary files /dev/null and b/app/img/phones/dell-streak-7.1.jpg differ diff --git a/app/img/phones/dell-streak-7.2.jpg b/app/img/phones/dell-streak-7.2.jpg new file mode 100644 index 000000000..2a896c579 Binary files /dev/null and b/app/img/phones/dell-streak-7.2.jpg differ diff --git a/app/img/phones/dell-streak-7.3.jpg b/app/img/phones/dell-streak-7.3.jpg new file mode 100644 index 000000000..0f3d6505f Binary files /dev/null and b/app/img/phones/dell-streak-7.3.jpg differ diff --git a/app/img/phones/dell-streak-7.4.jpg b/app/img/phones/dell-streak-7.4.jpg new file mode 100644 index 000000000..c32f57b29 Binary files /dev/null and b/app/img/phones/dell-streak-7.4.jpg differ diff --git a/app/img/phones/dell-venue.0.jpg b/app/img/phones/dell-venue.0.jpg new file mode 100644 index 000000000..c9e2636cb Binary files /dev/null and b/app/img/phones/dell-venue.0.jpg differ diff --git a/app/img/phones/dell-venue.1.jpg b/app/img/phones/dell-venue.1.jpg new file mode 100644 index 000000000..51cd65067 Binary files /dev/null and b/app/img/phones/dell-venue.1.jpg differ diff --git a/app/img/phones/dell-venue.2.jpg b/app/img/phones/dell-venue.2.jpg new file mode 100644 index 000000000..4cd7543d7 Binary files /dev/null and b/app/img/phones/dell-venue.2.jpg differ diff --git a/app/img/phones/dell-venue.3.jpg b/app/img/phones/dell-venue.3.jpg new file mode 100644 index 000000000..4de1dd417 Binary files /dev/null and b/app/img/phones/dell-venue.3.jpg differ diff --git a/app/img/phones/dell-venue.4.jpg b/app/img/phones/dell-venue.4.jpg new file mode 100644 index 000000000..f75499740 Binary files /dev/null and b/app/img/phones/dell-venue.4.jpg differ diff --git a/app/img/phones/dell-venue.5.jpg b/app/img/phones/dell-venue.5.jpg new file mode 100644 index 000000000..cac77540d Binary files /dev/null and b/app/img/phones/dell-venue.5.jpg differ diff --git a/app/img/phones/droid-2-global-by-motorola.0.jpg b/app/img/phones/droid-2-global-by-motorola.0.jpg new file mode 100644 index 000000000..2b286ed7b Binary files /dev/null and b/app/img/phones/droid-2-global-by-motorola.0.jpg differ diff --git a/app/img/phones/droid-2-global-by-motorola.1.jpg b/app/img/phones/droid-2-global-by-motorola.1.jpg new file mode 100644 index 000000000..07aa2c2e6 Binary files /dev/null and b/app/img/phones/droid-2-global-by-motorola.1.jpg differ diff --git a/app/img/phones/droid-2-global-by-motorola.2.jpg b/app/img/phones/droid-2-global-by-motorola.2.jpg new file mode 100644 index 000000000..3ac10a351 Binary files /dev/null and b/app/img/phones/droid-2-global-by-motorola.2.jpg differ diff --git a/app/img/phones/droid-pro-by-motorola.0.jpg b/app/img/phones/droid-pro-by-motorola.0.jpg new file mode 100644 index 000000000..7e132696f Binary files /dev/null and b/app/img/phones/droid-pro-by-motorola.0.jpg differ diff --git a/app/img/phones/droid-pro-by-motorola.1.jpg b/app/img/phones/droid-pro-by-motorola.1.jpg new file mode 100644 index 000000000..ed50c5eaf Binary files /dev/null and b/app/img/phones/droid-pro-by-motorola.1.jpg differ diff --git a/app/img/phones/lg-axis.0.jpg b/app/img/phones/lg-axis.0.jpg new file mode 100644 index 000000000..fa4ec1183 Binary files /dev/null and b/app/img/phones/lg-axis.0.jpg differ diff --git a/app/img/phones/lg-axis.1.jpg b/app/img/phones/lg-axis.1.jpg new file mode 100644 index 000000000..00640be94 Binary files /dev/null and b/app/img/phones/lg-axis.1.jpg differ diff --git a/app/img/phones/lg-axis.2.jpg b/app/img/phones/lg-axis.2.jpg new file mode 100644 index 000000000..88447acbc Binary files /dev/null and b/app/img/phones/lg-axis.2.jpg differ diff --git a/app/img/phones/motorola-atrix-4g.0.jpg b/app/img/phones/motorola-atrix-4g.0.jpg new file mode 100644 index 000000000..e05531434 Binary files /dev/null and b/app/img/phones/motorola-atrix-4g.0.jpg differ diff --git a/app/img/phones/motorola-atrix-4g.1.jpg b/app/img/phones/motorola-atrix-4g.1.jpg new file mode 100644 index 000000000..df83f1c6a Binary files /dev/null and b/app/img/phones/motorola-atrix-4g.1.jpg differ diff --git a/app/img/phones/motorola-atrix-4g.2.jpg b/app/img/phones/motorola-atrix-4g.2.jpg new file mode 100644 index 000000000..0aadff3e4 Binary files /dev/null and b/app/img/phones/motorola-atrix-4g.2.jpg differ diff --git a/app/img/phones/motorola-atrix-4g.3.jpg b/app/img/phones/motorola-atrix-4g.3.jpg new file mode 100644 index 000000000..131593375 Binary files /dev/null and b/app/img/phones/motorola-atrix-4g.3.jpg differ diff --git a/app/img/phones/motorola-bravo-with-motoblur.0.jpg b/app/img/phones/motorola-bravo-with-motoblur.0.jpg new file mode 100644 index 000000000..0d8028233 Binary files /dev/null and b/app/img/phones/motorola-bravo-with-motoblur.0.jpg differ diff --git a/app/img/phones/motorola-bravo-with-motoblur.1.jpg b/app/img/phones/motorola-bravo-with-motoblur.1.jpg new file mode 100644 index 000000000..1173844db Binary files /dev/null and b/app/img/phones/motorola-bravo-with-motoblur.1.jpg differ diff --git a/app/img/phones/motorola-bravo-with-motoblur.2.jpg b/app/img/phones/motorola-bravo-with-motoblur.2.jpg new file mode 100644 index 000000000..7958d5b23 Binary files /dev/null and b/app/img/phones/motorola-bravo-with-motoblur.2.jpg differ diff --git a/app/img/phones/motorola-charm-with-motoblur.0.jpg b/app/img/phones/motorola-charm-with-motoblur.0.jpg new file mode 100644 index 000000000..21153dab1 Binary files /dev/null and b/app/img/phones/motorola-charm-with-motoblur.0.jpg differ diff --git a/app/img/phones/motorola-charm-with-motoblur.1.jpg b/app/img/phones/motorola-charm-with-motoblur.1.jpg new file mode 100644 index 000000000..0b64e59ab Binary files /dev/null and b/app/img/phones/motorola-charm-with-motoblur.1.jpg differ diff --git a/app/img/phones/motorola-charm-with-motoblur.2.jpg b/app/img/phones/motorola-charm-with-motoblur.2.jpg new file mode 100644 index 000000000..1fe79930e Binary files /dev/null and b/app/img/phones/motorola-charm-with-motoblur.2.jpg differ diff --git a/app/img/phones/motorola-defy-with-motoblur.0.jpg b/app/img/phones/motorola-defy-with-motoblur.0.jpg new file mode 100644 index 000000000..9453993b4 Binary files /dev/null and b/app/img/phones/motorola-defy-with-motoblur.0.jpg differ diff --git a/app/img/phones/motorola-defy-with-motoblur.1.jpg b/app/img/phones/motorola-defy-with-motoblur.1.jpg new file mode 100644 index 000000000..3eb190be7 Binary files /dev/null and b/app/img/phones/motorola-defy-with-motoblur.1.jpg differ diff --git a/app/img/phones/motorola-defy-with-motoblur.2.jpg b/app/img/phones/motorola-defy-with-motoblur.2.jpg new file mode 100644 index 000000000..30339208b Binary files /dev/null and b/app/img/phones/motorola-defy-with-motoblur.2.jpg differ diff --git a/app/img/phones/motorola-xoom-with-wi-fi.0.jpg b/app/img/phones/motorola-xoom-with-wi-fi.0.jpg new file mode 100644 index 000000000..5f78a0e88 Binary files /dev/null and b/app/img/phones/motorola-xoom-with-wi-fi.0.jpg differ diff --git a/app/img/phones/motorola-xoom-with-wi-fi.1.jpg b/app/img/phones/motorola-xoom-with-wi-fi.1.jpg new file mode 100644 index 000000000..e530574b9 Binary files /dev/null and b/app/img/phones/motorola-xoom-with-wi-fi.1.jpg differ diff --git a/app/img/phones/motorola-xoom-with-wi-fi.2.jpg b/app/img/phones/motorola-xoom-with-wi-fi.2.jpg new file mode 100644 index 000000000..e7a7825af Binary files /dev/null and b/app/img/phones/motorola-xoom-with-wi-fi.2.jpg differ diff --git a/app/img/phones/motorola-xoom-with-wi-fi.3.jpg b/app/img/phones/motorola-xoom-with-wi-fi.3.jpg new file mode 100644 index 000000000..7f408f00f Binary files /dev/null and b/app/img/phones/motorola-xoom-with-wi-fi.3.jpg differ diff --git a/app/img/phones/motorola-xoom-with-wi-fi.4.jpg b/app/img/phones/motorola-xoom-with-wi-fi.4.jpg new file mode 100644 index 000000000..71d8f0c58 Binary files /dev/null and b/app/img/phones/motorola-xoom-with-wi-fi.4.jpg differ diff --git a/app/img/phones/motorola-xoom-with-wi-fi.5.jpg b/app/img/phones/motorola-xoom-with-wi-fi.5.jpg new file mode 100644 index 000000000..ba44b3171 Binary files /dev/null and b/app/img/phones/motorola-xoom-with-wi-fi.5.jpg differ diff --git a/app/img/phones/motorola-xoom.0.jpg b/app/img/phones/motorola-xoom.0.jpg new file mode 100644 index 000000000..8f895552b Binary files /dev/null and b/app/img/phones/motorola-xoom.0.jpg differ diff --git a/app/img/phones/motorola-xoom.1.jpg b/app/img/phones/motorola-xoom.1.jpg new file mode 100644 index 000000000..cdca56de0 Binary files /dev/null and b/app/img/phones/motorola-xoom.1.jpg differ diff --git a/app/img/phones/motorola-xoom.2.jpg b/app/img/phones/motorola-xoom.2.jpg new file mode 100644 index 000000000..aa138d8e5 Binary files /dev/null and b/app/img/phones/motorola-xoom.2.jpg differ diff --git a/app/img/phones/nexus-s.0.jpg b/app/img/phones/nexus-s.0.jpg new file mode 100644 index 000000000..0c4b73ff0 Binary files /dev/null and b/app/img/phones/nexus-s.0.jpg differ diff --git a/app/img/phones/nexus-s.1.jpg b/app/img/phones/nexus-s.1.jpg new file mode 100644 index 000000000..7bfc751df Binary files /dev/null and b/app/img/phones/nexus-s.1.jpg differ diff --git a/app/img/phones/nexus-s.2.jpg b/app/img/phones/nexus-s.2.jpg new file mode 100644 index 000000000..84e392e99 Binary files /dev/null and b/app/img/phones/nexus-s.2.jpg differ diff --git a/app/img/phones/nexus-s.3.jpg b/app/img/phones/nexus-s.3.jpg new file mode 100644 index 000000000..872e4d8b9 Binary files /dev/null and b/app/img/phones/nexus-s.3.jpg differ diff --git a/app/img/phones/samsung-galaxy-tab.0.jpg b/app/img/phones/samsung-galaxy-tab.0.jpg new file mode 100644 index 000000000..80c403742 Binary files /dev/null and b/app/img/phones/samsung-galaxy-tab.0.jpg differ diff --git a/app/img/phones/samsung-galaxy-tab.1.jpg b/app/img/phones/samsung-galaxy-tab.1.jpg new file mode 100644 index 000000000..ea451fff4 Binary files /dev/null and b/app/img/phones/samsung-galaxy-tab.1.jpg differ diff --git a/app/img/phones/samsung-galaxy-tab.2.jpg b/app/img/phones/samsung-galaxy-tab.2.jpg new file mode 100644 index 000000000..e7f440509 Binary files /dev/null and b/app/img/phones/samsung-galaxy-tab.2.jpg differ diff --git a/app/img/phones/samsung-galaxy-tab.3.jpg b/app/img/phones/samsung-galaxy-tab.3.jpg new file mode 100644 index 000000000..9b06ef3cd Binary files /dev/null and b/app/img/phones/samsung-galaxy-tab.3.jpg differ diff --git a/app/img/phones/samsung-galaxy-tab.4.jpg b/app/img/phones/samsung-galaxy-tab.4.jpg new file mode 100644 index 000000000..e043d33f3 Binary files /dev/null and b/app/img/phones/samsung-galaxy-tab.4.jpg differ diff --git a/app/img/phones/samsung-galaxy-tab.5.jpg b/app/img/phones/samsung-galaxy-tab.5.jpg new file mode 100644 index 000000000..1f054b6d4 Binary files /dev/null and b/app/img/phones/samsung-galaxy-tab.5.jpg differ diff --git a/app/img/phones/samsung-galaxy-tab.6.jpg b/app/img/phones/samsung-galaxy-tab.6.jpg new file mode 100644 index 000000000..87d3ba80d Binary files /dev/null and b/app/img/phones/samsung-galaxy-tab.6.jpg differ diff --git a/app/img/phones/samsung-gem.0.jpg b/app/img/phones/samsung-gem.0.jpg new file mode 100644 index 000000000..3ca91415e Binary files /dev/null and b/app/img/phones/samsung-gem.0.jpg differ diff --git a/app/img/phones/samsung-gem.1.jpg b/app/img/phones/samsung-gem.1.jpg new file mode 100644 index 000000000..addd1bf2b Binary files /dev/null and b/app/img/phones/samsung-gem.1.jpg differ diff --git a/app/img/phones/samsung-gem.2.jpg b/app/img/phones/samsung-gem.2.jpg new file mode 100644 index 000000000..3d2e9b09e Binary files /dev/null and b/app/img/phones/samsung-gem.2.jpg differ diff --git a/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.0.jpg b/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.0.jpg new file mode 100644 index 000000000..f111c6b75 Binary files /dev/null and b/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.0.jpg differ diff --git a/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.1.jpg b/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.1.jpg new file mode 100644 index 000000000..8a66c7037 Binary files /dev/null and b/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.1.jpg differ diff --git a/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.2.jpg b/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.2.jpg new file mode 100644 index 000000000..d7f4aa7c4 Binary files /dev/null and b/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.2.jpg differ diff --git a/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.3.jpg b/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.3.jpg new file mode 100644 index 000000000..b584bfb83 Binary files /dev/null and b/app/img/phones/samsung-mesmerize-a-galaxy-s-phone.3.jpg differ diff --git a/app/img/phones/samsung-showcase-a-galaxy-s-phone.0.jpg b/app/img/phones/samsung-showcase-a-galaxy-s-phone.0.jpg new file mode 100644 index 000000000..f111c6b75 Binary files /dev/null and b/app/img/phones/samsung-showcase-a-galaxy-s-phone.0.jpg differ diff --git a/app/img/phones/samsung-showcase-a-galaxy-s-phone.1.jpg b/app/img/phones/samsung-showcase-a-galaxy-s-phone.1.jpg new file mode 100644 index 000000000..8a66c7037 Binary files /dev/null and b/app/img/phones/samsung-showcase-a-galaxy-s-phone.1.jpg differ diff --git a/app/img/phones/samsung-showcase-a-galaxy-s-phone.2.jpg b/app/img/phones/samsung-showcase-a-galaxy-s-phone.2.jpg new file mode 100644 index 000000000..d7f4aa7c4 Binary files /dev/null and b/app/img/phones/samsung-showcase-a-galaxy-s-phone.2.jpg differ diff --git a/app/img/phones/samsung-transform.0.jpg b/app/img/phones/samsung-transform.0.jpg new file mode 100644 index 000000000..8d1aa87b6 Binary files /dev/null and b/app/img/phones/samsung-transform.0.jpg differ diff --git a/app/img/phones/samsung-transform.1.jpg b/app/img/phones/samsung-transform.1.jpg new file mode 100644 index 000000000..6287e2539 Binary files /dev/null and b/app/img/phones/samsung-transform.1.jpg differ diff --git a/app/img/phones/samsung-transform.2.jpg b/app/img/phones/samsung-transform.2.jpg new file mode 100644 index 000000000..9daaadab3 Binary files /dev/null and b/app/img/phones/samsung-transform.2.jpg differ diff --git a/app/img/phones/samsung-transform.3.jpg b/app/img/phones/samsung-transform.3.jpg new file mode 100644 index 000000000..b0607bef9 Binary files /dev/null and b/app/img/phones/samsung-transform.3.jpg differ diff --git a/app/img/phones/samsung-transform.4.jpg b/app/img/phones/samsung-transform.4.jpg new file mode 100644 index 000000000..11584d5db Binary files /dev/null and b/app/img/phones/samsung-transform.4.jpg differ diff --git a/app/img/phones/sanyo-zio.0.jpg b/app/img/phones/sanyo-zio.0.jpg new file mode 100644 index 000000000..08aafe1a4 Binary files /dev/null and b/app/img/phones/sanyo-zio.0.jpg differ diff --git a/app/img/phones/sanyo-zio.1.jpg b/app/img/phones/sanyo-zio.1.jpg new file mode 100644 index 000000000..f4aa3c28e Binary files /dev/null and b/app/img/phones/sanyo-zio.1.jpg differ diff --git a/app/img/phones/sanyo-zio.2.jpg b/app/img/phones/sanyo-zio.2.jpg new file mode 100644 index 000000000..b7caf629b Binary files /dev/null and b/app/img/phones/sanyo-zio.2.jpg differ diff --git a/app/img/phones/t-mobile-g2.0.jpg b/app/img/phones/t-mobile-g2.0.jpg new file mode 100644 index 000000000..8b30b4a04 Binary files /dev/null and b/app/img/phones/t-mobile-g2.0.jpg differ diff --git a/app/img/phones/t-mobile-g2.1.jpg b/app/img/phones/t-mobile-g2.1.jpg new file mode 100644 index 000000000..61a3eaa65 Binary files /dev/null and b/app/img/phones/t-mobile-g2.1.jpg differ diff --git a/app/img/phones/t-mobile-g2.2.jpg b/app/img/phones/t-mobile-g2.2.jpg new file mode 100644 index 000000000..7ad28f57b Binary files /dev/null and b/app/img/phones/t-mobile-g2.2.jpg differ diff --git a/app/img/phones/t-mobile-mytouch-4g.0.jpg b/app/img/phones/t-mobile-mytouch-4g.0.jpg new file mode 100644 index 000000000..671dbb032 Binary files /dev/null and b/app/img/phones/t-mobile-mytouch-4g.0.jpg differ diff --git a/app/img/phones/t-mobile-mytouch-4g.1.jpg b/app/img/phones/t-mobile-mytouch-4g.1.jpg new file mode 100644 index 000000000..1f2a0c8d8 Binary files /dev/null and b/app/img/phones/t-mobile-mytouch-4g.1.jpg differ diff --git a/app/img/phones/t-mobile-mytouch-4g.2.jpg b/app/img/phones/t-mobile-mytouch-4g.2.jpg new file mode 100644 index 000000000..f027d21e2 Binary files /dev/null and b/app/img/phones/t-mobile-mytouch-4g.2.jpg differ diff --git a/app/img/phones/t-mobile-mytouch-4g.3.jpg b/app/img/phones/t-mobile-mytouch-4g.3.jpg new file mode 100644 index 000000000..161a340a3 Binary files /dev/null and b/app/img/phones/t-mobile-mytouch-4g.3.jpg differ diff --git a/app/img/phones/t-mobile-mytouch-4g.4.jpg b/app/img/phones/t-mobile-mytouch-4g.4.jpg new file mode 100644 index 000000000..f6ec2ed57 Binary files /dev/null and b/app/img/phones/t-mobile-mytouch-4g.4.jpg differ diff --git a/app/img/phones/t-mobile-mytouch-4g.5.jpg b/app/img/phones/t-mobile-mytouch-4g.5.jpg new file mode 100644 index 000000000..671dbb032 Binary files /dev/null and b/app/img/phones/t-mobile-mytouch-4g.5.jpg differ diff --git a/app/index-async.html b/app/index-async.html index ca9f3ae85..e78079f2e 100644 --- a/app/index-async.html +++ b/app/index-async.html @@ -12,15 +12,17 @@ + +
+