├── .gitattributes ├── .gitignore ├── .sencha ├── app │ ├── Boot.js │ ├── Microloader.js │ ├── app.defaults.json │ ├── bootstrap-impl.xml │ ├── build-impl.xml │ ├── build.properties │ ├── codegen.json │ ├── cordova-impl.xml │ ├── cordova.defaults.properties │ ├── defaults.properties │ ├── development.defaults.properties │ ├── development.properties │ ├── find-cmd-impl.xml │ ├── init-impl.xml │ ├── js-impl.xml │ ├── microloader │ │ ├── development.js │ │ ├── production.js │ │ └── testing.js │ ├── native.defaults.properties │ ├── native.properties │ ├── package.defaults.properties │ ├── package.properties │ ├── packager-impl.xml │ ├── page-impl.xml │ ├── phonegap-impl.xml │ ├── phonegap.defaults.properties │ ├── plugin.xml │ ├── production.defaults.properties │ ├── production.properties │ ├── refresh-impl.xml │ ├── resolve-impl.xml │ ├── resources-impl.xml │ ├── sass-impl.xml │ ├── sencha.cfg │ ├── slice-impl.xml │ ├── testing.defaults.properties │ ├── testing.properties │ ├── touch.properties │ └── watch-impl.xml └── workspace │ ├── plugin.xml │ └── sencha.cfg ├── README.md ├── admin.php ├── admintools.php ├── app.js ├── app.json ├── app ├── Readme.md ├── controller │ ├── Readme.md │ ├── articlesControl.js │ ├── comic.js │ └── epub.js ├── form │ └── Readme.md ├── model │ ├── Readme.md │ ├── article.js │ ├── article2.js │ ├── filtermodel.js │ ├── listmodel.js │ ├── myreadingsConf.js │ └── myreadingsUser.js ├── store │ ├── Readme.md │ ├── filterstore.js │ └── liststore.js └── view │ ├── Articles.js │ ├── ArticlesList.js │ ├── ImageViewer.js │ ├── Readme.md │ ├── article.js │ ├── articlesserieslist.js │ ├── bookmarkview.js │ ├── comicSettingsPopup.js │ ├── comicview.js │ ├── configpanel.js │ ├── epubview.js │ ├── filterview.js │ ├── listview.js │ ├── main.js │ ├── orderview.js │ ├── searchpanel.js │ └── searchview.js ├── bootstrap.js ├── bootstrap.json ├── build.xml ├── cache.json ├── cache └── writetest.html ├── comicsreader.php ├── config └── configtemplate.php ├── cover.php ├── epubfs.php ├── epubreader.php ├── favicon.ico ├── getConfig.php ├── getbook.php ├── index.html ├── listjson.php ├── recordjson.php ├── recordsjson.php ├── resources ├── css │ ├── app.css │ └── wood.css ├── epub │ ├── monocle │ │ ├── monocore.css │ │ ├── monocore.js │ │ ├── monoctrl.css │ │ ├── monoctrl.js │ │ └── test.css │ └── php-epub-meta │ │ ├── LICENSE_php-epub-meta │ │ ├── epub.php │ │ └── tbszip.php ├── icons │ ├── Icon.png │ ├── Icon@2x.png │ ├── Icon_Android36.png │ ├── Icon_Android48.png │ ├── Icon~ipad.png │ ├── Icon~ipad@2x.png │ ├── iTunesArtwork.png │ └── icon-spot~ipad.png ├── images │ ├── bg_book.png │ ├── bg_bookr.png │ ├── bookmark.png │ ├── bookmarkgtab.png │ ├── bookmarkgtabread.png │ ├── bookmarkiphone.png │ ├── bookmarkiphoneread.png │ ├── bookmarkread.png │ ├── books.png │ ├── empty.png │ ├── errorresize.jpg │ ├── no_image_available.jpg │ ├── no_login.jpg │ ├── tuiles │ │ ├── tile.png │ │ └── tile.psd │ └── white.jpg ├── jquery │ ├── images │ │ ├── ajax-loader.gif │ │ └── icons-png │ │ │ ├── action-black.png │ │ │ ├── action-white.png │ │ │ ├── alert-black.png │ │ │ ├── alert-white.png │ │ │ ├── arrow-d-black.png │ │ │ ├── arrow-d-l-black.png │ │ │ ├── arrow-d-l-white.png │ │ │ ├── arrow-d-r-black.png │ │ │ ├── arrow-d-r-white.png │ │ │ ├── arrow-d-white.png │ │ │ ├── arrow-l-black.png │ │ │ ├── arrow-l-white.png │ │ │ ├── arrow-r-black.png │ │ │ ├── arrow-r-white.png │ │ │ ├── arrow-u-black.png │ │ │ ├── arrow-u-l-black.png │ │ │ ├── arrow-u-l-white.png │ │ │ ├── arrow-u-r-black.png │ │ │ ├── arrow-u-r-white.png │ │ │ ├── arrow-u-white.png │ │ │ ├── audio-black.png │ │ │ ├── audio-white.png │ │ │ ├── back-black.png │ │ │ ├── back-white.png │ │ │ ├── bars-black.png │ │ │ ├── bars-white.png │ │ │ ├── bullets-black.png │ │ │ ├── bullets-white.png │ │ │ ├── calendar-black.png │ │ │ ├── calendar-white.png │ │ │ ├── camera-black.png │ │ │ ├── camera-white.png │ │ │ ├── carat-d-black.png │ │ │ ├── carat-d-white.png │ │ │ ├── carat-l-black.png │ │ │ ├── carat-l-white.png │ │ │ ├── carat-r-black.png │ │ │ ├── carat-r-white.png │ │ │ ├── carat-u-black.png │ │ │ ├── carat-u-white.png │ │ │ ├── check-black.png │ │ │ ├── check-white.png │ │ │ ├── clock-black.png │ │ │ ├── clock-white.png │ │ │ ├── cloud-black.png │ │ │ ├── cloud-white.png │ │ │ ├── comment-black.png │ │ │ ├── comment-white.png │ │ │ ├── delete-black.png │ │ │ ├── delete-white.png │ │ │ ├── edit-black.png │ │ │ ├── edit-white.png │ │ │ ├── eye-black.png │ │ │ ├── eye-white.png │ │ │ ├── forbidden-black.png │ │ │ ├── forbidden-white.png │ │ │ ├── forward-black.png │ │ │ ├── forward-white.png │ │ │ ├── gear-black.png │ │ │ ├── gear-white.png │ │ │ ├── grid-black.png │ │ │ ├── grid-white.png │ │ │ ├── heart-black.png │ │ │ ├── heart-white.png │ │ │ ├── home-black.png │ │ │ ├── home-white.png │ │ │ ├── info-black.png │ │ │ ├── info-white.png │ │ │ ├── location-black.png │ │ │ ├── location-white.png │ │ │ ├── lock-black.png │ │ │ ├── lock-white.png │ │ │ ├── mail-black.png │ │ │ ├── mail-white.png │ │ │ ├── minus-black.png │ │ │ ├── minus-white.png │ │ │ ├── navigation-black.png │ │ │ ├── navigation-white.png │ │ │ ├── phone-black.png │ │ │ ├── phone-white.png │ │ │ ├── plus-black.png │ │ │ ├── plus-white.png │ │ │ ├── power-black.png │ │ │ ├── power-white.png │ │ │ ├── recycle-black.png │ │ │ ├── recycle-white.png │ │ │ ├── refresh-black.png │ │ │ ├── refresh-white.png │ │ │ ├── search-black.png │ │ │ ├── search-white.png │ │ │ ├── shop-black.png │ │ │ ├── shop-white.png │ │ │ ├── star-black.png │ │ │ ├── star-white.png │ │ │ ├── tag-black.png │ │ │ ├── tag-white.png │ │ │ ├── user-black.png │ │ │ ├── user-white.png │ │ │ ├── video-black.png │ │ │ └── video-white.png │ ├── jquery.js │ ├── jquery.mobile-1.4.2.js │ ├── jquery.mobile.icons.min.css │ ├── jquery.mobile.structure-1.4.2.min.css │ ├── jquery.validate.min.js │ ├── myreadings.css │ └── myreadings.min.css ├── loading │ ├── Default-Landscape@2x~ipad.png │ ├── Default-LandscapeLeft~ipad.png │ ├── Default-LandscapeRight~ipad.png │ ├── Default-Landscape~ipad.png │ ├── Default-Portrait@2x~ipad.png │ ├── Default-PortraitUpsideDown~ipad.png │ ├── Default-Portrait~ipad.png │ ├── Default.png │ ├── Default@2x.png │ └── Default~ipad.png ├── locale │ ├── admin_en.json │ ├── admin_fr.json │ ├── local_en.json │ ├── local_es.json │ └── local_fr.json ├── sass │ ├── app.scss │ ├── compile.bat │ ├── config.rb │ ├── stylesheets │ │ └── fonts │ │ │ ├── ios7 │ │ │ ├── ios7.eot │ │ │ ├── ios7.svg │ │ │ ├── ios7.ttf │ │ │ └── ios7.woff │ │ │ ├── pictos │ │ │ ├── pictos-web.eot │ │ │ ├── pictos-web.svg │ │ │ ├── pictos-web.ttf │ │ │ └── pictos-web.woff │ │ │ └── tizen │ │ │ ├── TizenSansMedium.ttf │ │ │ ├── TizenSansRegular.ttf │ │ │ ├── tizen-icon.eot │ │ │ ├── tizen-icon.svg │ │ │ ├── tizen-icon.ttf │ │ │ └── tizen-icon.woff │ └── wood.scss └── startup │ ├── 1496x2048.png │ ├── 1536x2008.png │ ├── 320x460.jpg │ ├── 640x920.png │ ├── 748x1024.png │ └── 768x1004.png ├── saveconfig.php ├── senchacomp.bat ├── skin ├── galaxytab.html ├── galaxytab2_landscape.png ├── galaxytab2_portrait.png ├── gtabview.jpg ├── ipad.html ├── ipad_landscape.png ├── ipad_portrait.png ├── ipad_wood.html ├── ipadmini.html ├── ipadmini_landscape.png ├── ipadmini_portrait.png ├── ipadview1.jpg ├── ipadview2.jpg ├── iphone.html ├── iphone_landscape.png ├── iphone_portrait.png ├── iphoneview.jpg ├── rotate.png └── test.html ├── testexist.php ├── tests.php ├── thumb └── writetest.html ├── tools.php ├── touch ├── build.xml ├── cmd │ └── sencha.cfg ├── file-header.txt ├── license.txt ├── microloader │ ├── development.js │ ├── production.js │ └── testing.js ├── resources │ ├── css-debug │ │ ├── apple.css │ │ ├── base.css │ │ ├── bb10.css │ │ ├── cupertino-classic.css │ │ ├── cupertino.css │ │ ├── mountainview.css │ │ ├── sencha-touch.css │ │ ├── tizen.css │ │ └── wp.css │ ├── css │ │ ├── base.css │ │ ├── bb10.css │ │ ├── cupertino-classic.css │ │ ├── cupertino.css │ │ ├── mountainview.css │ │ ├── sencha-touch.css │ │ ├── tizen.css │ │ └── wp.css │ ├── images │ │ ├── icon1.png │ │ ├── icon2.png │ │ ├── icon3.png │ │ ├── icon4.png │ │ └── welcome.png │ ├── sass │ │ ├── base.scss │ │ ├── bb10.scss │ │ ├── config-debug.rb │ │ ├── config.rb │ │ ├── cupertino-classic.scss │ │ ├── cupertino.scss │ │ ├── mountainview.scss │ │ ├── sencha-touch.scss │ │ ├── tizen.scss │ │ └── wp.scss │ └── themes │ │ ├── compass_init.rb │ │ ├── fonts │ │ ├── ios7 │ │ │ ├── ios7.eot │ │ │ ├── ios7.svg │ │ │ ├── ios7.ttf │ │ │ └── ios7.woff │ │ ├── pictos │ │ │ ├── pictos-web.eot │ │ │ ├── pictos-web.svg │ │ │ ├── pictos-web.ttf │ │ │ └── pictos-web.woff │ │ └── tizen │ │ │ ├── TizenSansMedium.ttf │ │ │ ├── TizenSansRegular.ttf │ │ │ ├── tizen-icon.eot │ │ │ ├── tizen-icon.svg │ │ │ ├── tizen-icon.ttf │ │ │ └── tizen-icon.woff │ │ ├── images │ │ ├── bb10 │ │ │ ├── check.png │ │ │ ├── clear_icon.png │ │ │ ├── disclosure.png │ │ │ ├── disclosure2.png │ │ │ ├── dotgrid.png │ │ │ ├── icons │ │ │ │ ├── ic_add.png │ │ │ │ ├── ic_add_entry.png │ │ │ │ ├── ic_add_favorite.png │ │ │ │ ├── ic_add_folder.png │ │ │ │ ├── ic_add_to_contacts.png │ │ │ │ ├── ic_advanced.png │ │ │ │ ├── ic_advanced_restore.png │ │ │ │ ├── ic_all.png │ │ │ │ ├── ic_attach.png │ │ │ │ ├── ic_bbm.png │ │ │ │ ├── ic_browse.png │ │ │ │ ├── ic_browser.png │ │ │ │ ├── ic_buy.png │ │ │ │ ├── ic_camera.png │ │ │ │ ├── ic_cancel.png │ │ │ │ ├── ic_cancel_selection.png │ │ │ │ ├── ic_check_spelling.png │ │ │ │ ├── ic_clear.png │ │ │ │ ├── ic_clear_list.png │ │ │ │ ├── ic_code_inspector.png │ │ │ │ ├── ic_collapse.png │ │ │ │ ├── ic_compose.png │ │ │ │ ├── ic_connections.png │ │ │ │ ├── ic_contacts.png │ │ │ │ ├── ic_copy.png │ │ │ │ ├── ic_copy_link.png │ │ │ │ ├── ic_copy_link_image.png │ │ │ │ ├── ic_copy_password.png │ │ │ │ ├── ic_cut.png │ │ │ │ ├── ic_decrease.png │ │ │ │ ├── ic_delete.png │ │ │ │ ├── ic_delete_prior.png │ │ │ │ ├── ic_deselect.png │ │ │ │ ├── ic_deselect_all.png │ │ │ │ ├── ic_diagnostics.png │ │ │ │ ├── ic_disable.png │ │ │ │ ├── ic_doctype_doc.png │ │ │ │ ├── ic_doctype_generic.png │ │ │ │ ├── ic_doctype_music.png │ │ │ │ ├── ic_doctype_pdf.png │ │ │ │ ├── ic_doctype_picture.png │ │ │ │ ├── ic_doctype_ppt.png │ │ │ │ ├── ic_doctype_video.png │ │ │ │ ├── ic_doctype_web.png │ │ │ │ ├── ic_doctype_xls.png │ │ │ │ ├── ic_doctype_zip.png │ │ │ │ ├── ic_done.png │ │ │ │ ├── ic_download.png │ │ │ │ ├── ic_edit.png │ │ │ │ ├── ic_edit_favorite.png │ │ │ │ ├── ic_edit_list.png │ │ │ │ ├── ic_edit_profile.png │ │ │ │ ├── ic_email.png │ │ │ │ ├── ic_enable.png │ │ │ │ ├── ic_entry.png │ │ │ │ ├── ic_expand.png │ │ │ │ ├── ic_favorite.png │ │ │ │ ├── ic_feedback.png │ │ │ │ ├── ic_forward.png │ │ │ │ ├── ic_forward_as_bbm.png │ │ │ │ ├── ic_forward_as_email.png │ │ │ │ ├── ic_forward_as_text.png │ │ │ │ ├── ic_help.png │ │ │ │ ├── ic_history.png │ │ │ │ ├── ic_home.png │ │ │ │ ├── ic_increase.png │ │ │ │ ├── ic_info.png │ │ │ │ ├── ic_location.png │ │ │ │ ├── ic_lock.png │ │ │ │ ├── ic_map.png │ │ │ │ ├── ic_microphone.png │ │ │ │ ├── ic_microphone_mute.png │ │ │ │ ├── ic_move.png │ │ │ │ ├── ic_nav_to.png │ │ │ │ ├── ic_next.png │ │ │ │ ├── ic_notes.png │ │ │ │ ├── ic_notification.png │ │ │ │ ├── ic_open.png │ │ │ │ ├── ic_open_link.png │ │ │ │ ├── ic_overflow_action.png │ │ │ │ ├── ic_overflow_tab.png │ │ │ │ ├── ic_paste.png │ │ │ │ ├── ic_pause.png │ │ │ │ ├── ic_phone.png │ │ │ │ ├── ic_play.png │ │ │ │ ├── ic_previous.png │ │ │ │ ├── ic_properties.png │ │ │ │ ├── ic_reload.png │ │ │ │ ├── ic_rename.png │ │ │ │ ├── ic_reply.png │ │ │ │ ├── ic_reply_all.png │ │ │ │ ├── ic_rotate.png │ │ │ │ ├── ic_save.png │ │ │ │ ├── ic_save_as.png │ │ │ │ ├── ic_scan_barcode.png │ │ │ │ ├── ic_search.png │ │ │ │ ├── ic_select.png │ │ │ │ ├── ic_select_all.png │ │ │ │ ├── ic_select_more.png │ │ │ │ ├── ic_select_text.png │ │ │ │ ├── ic_select_text_all.png │ │ │ │ ├── ic_set_as_default.png │ │ │ │ ├── ic_settings.png │ │ │ │ ├── ic_share.png │ │ │ │ ├── ic_show_dialpad.png │ │ │ │ ├── ic_show_vkb.png │ │ │ │ ├── ic_sort.png │ │ │ │ ├── ic_sort_filter.png │ │ │ │ ├── ic_speaker.png │ │ │ │ ├── ic_speaker_mute.png │ │ │ │ ├── ic_stop.png │ │ │ │ ├── ic_textmessage.png │ │ │ │ ├── ic_to_bottom.png │ │ │ │ ├── ic_to_top.png │ │ │ │ ├── ic_view_details.png │ │ │ │ ├── ic_view_grid.png │ │ │ │ ├── ic_view_image.png │ │ │ │ ├── ic_view_list.png │ │ │ │ ├── ic_view_post.png │ │ │ │ ├── ic_zoom_in.png │ │ │ │ └── ic_zoom_out.png │ │ │ ├── loading.gif │ │ │ ├── pullarrow.png │ │ │ ├── reveal_icon.png │ │ │ ├── select_mask.png │ │ │ ├── tab-active.png │ │ │ ├── tab.png │ │ │ ├── tip2_left.png │ │ │ ├── tip2_right.png │ │ │ ├── tip_bottom.png │ │ │ ├── tip_left.png │ │ │ ├── tip_right.png │ │ │ ├── tip_top.png │ │ │ ├── togglebg.png │ │ │ ├── togglemask.png │ │ │ ├── togglethumb.png │ │ │ ├── togglethumbbg.png │ │ │ ├── togglethumbmask.png │ │ │ └── trackmask_outer.png │ │ ├── cupertino-flat │ │ │ └── clear_icon.png │ │ ├── cupertino │ │ │ └── clear_icon.png │ │ ├── default │ │ │ ├── check.png │ │ │ ├── clear_icon.png │ │ │ ├── disclosure.png │ │ │ ├── disclosure2.png │ │ │ ├── dotgrid.png │ │ │ ├── loading.gif │ │ │ ├── pictos │ │ │ │ ├── action.png │ │ │ │ ├── add.png │ │ │ │ ├── add1.png │ │ │ │ ├── add_black.png │ │ │ │ ├── address_book.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_left.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── at.png │ │ │ │ ├── atom.png │ │ │ │ ├── attachment.png │ │ │ │ ├── attachment2.png │ │ │ │ ├── attachment3.png │ │ │ │ ├── attachment_black.png │ │ │ │ ├── back.png │ │ │ │ ├── backspace.png │ │ │ │ ├── battery_full.png │ │ │ │ ├── battery_low.png │ │ │ │ ├── battery_power.png │ │ │ │ ├── blank.png │ │ │ │ ├── bolt.png │ │ │ │ ├── bolt_side.png │ │ │ │ ├── bookmark1.png │ │ │ │ ├── bookmark2.png │ │ │ │ ├── bookmark_black.png │ │ │ │ ├── bookmarks.png │ │ │ │ ├── briefcase1.png │ │ │ │ ├── briefcase2.png │ │ │ │ ├── brightness1.png │ │ │ │ ├── brightness2.png │ │ │ │ ├── broadcast.png │ │ │ │ ├── bug.png │ │ │ │ ├── bulb.png │ │ │ │ ├── bullseye1.png │ │ │ │ ├── bullseye2.png │ │ │ │ ├── calendar.png │ │ │ │ ├── calendar2.png │ │ │ │ ├── calendar_add.png │ │ │ │ ├── card1.png │ │ │ │ ├── card2.png │ │ │ │ ├── chart1.png │ │ │ │ ├── chart2.png │ │ │ │ ├── chart3.png │ │ │ │ ├── chat.png │ │ │ │ ├── chat1.png │ │ │ │ ├── chat2.png │ │ │ │ ├── chat3.png │ │ │ │ ├── chat4.png │ │ │ │ ├── chat_black1.png │ │ │ │ ├── chat_black2.png │ │ │ │ ├── check1.png │ │ │ │ ├── check2.png │ │ │ │ ├── check_black1.png │ │ │ │ ├── check_black2.png │ │ │ │ ├── check_dotted.png │ │ │ │ ├── circle.png │ │ │ │ ├── circle2.png │ │ │ │ ├── circle3.png │ │ │ │ ├── circle4.png │ │ │ │ ├── clash.png │ │ │ │ ├── cloud.png │ │ │ │ ├── cloud_black.png │ │ │ │ ├── cloud_black_upload1.png │ │ │ │ ├── cloud_black_upload2.png │ │ │ │ ├── cloud_bolt.png │ │ │ │ ├── cloud_download.png │ │ │ │ ├── code1.png │ │ │ │ ├── code2.png │ │ │ │ ├── code3.png │ │ │ │ ├── compass1.png │ │ │ │ ├── compass2.png │ │ │ │ ├── compass3.png │ │ │ │ ├── compose.png │ │ │ │ ├── compose1.png │ │ │ │ ├── compose2.png │ │ │ │ ├── compose3.png │ │ │ │ ├── compose_black.png │ │ │ │ ├── contract.png │ │ │ │ ├── cube.png │ │ │ │ ├── data.png │ │ │ │ ├── delete.png │ │ │ │ ├── delete1.png │ │ │ │ ├── delete_black1.png │ │ │ │ ├── delete_black2.png │ │ │ │ ├── doc.png │ │ │ │ ├── doc2.png │ │ │ │ ├── doc_black.png │ │ │ │ ├── doc_black_landscape.png │ │ │ │ ├── doc_compose1.png │ │ │ │ ├── doc_compose2.png │ │ │ │ ├── doc_delete.png │ │ │ │ ├── doc_down.png │ │ │ │ ├── doc_drawer.png │ │ │ │ ├── doc_list.png │ │ │ │ ├── doc_new.png │ │ │ │ ├── doc_send.png │ │ │ │ ├── doc_up.png │ │ │ │ ├── docs1.png │ │ │ │ ├── docs2.png │ │ │ │ ├── docs_black1.png │ │ │ │ ├── docs_black2.png │ │ │ │ ├── download.png │ │ │ │ ├── download1.png │ │ │ │ ├── download2.png │ │ │ │ ├── download_screen.png │ │ │ │ ├── eject.png │ │ │ │ ├── empty1.png │ │ │ │ ├── empty2.png │ │ │ │ ├── equalizer1.png │ │ │ │ ├── equalizer2.png │ │ │ │ ├── event_complete.png │ │ │ │ ├── expand.png │ │ │ │ ├── favorites.png │ │ │ │ ├── favorites1.png │ │ │ │ ├── favorites_circle.png │ │ │ │ ├── fforward.png │ │ │ │ ├── find.png │ │ │ │ ├── flag.png │ │ │ │ ├── flickr2.png │ │ │ │ ├── folder.png │ │ │ │ ├── folder_add.png │ │ │ │ ├── folder_black.png │ │ │ │ ├── folder_black_open.png │ │ │ │ ├── folder_delete.png │ │ │ │ ├── folder_delete2.png │ │ │ │ ├── folder_lock.png │ │ │ │ ├── folder_open2.png │ │ │ │ ├── font.png │ │ │ │ ├── forbidden.png │ │ │ │ ├── forward_black.png │ │ │ │ ├── globe1.png │ │ │ │ ├── globe2.png │ │ │ │ ├── globe_black.png │ │ │ │ ├── headphones.png │ │ │ │ ├── heart.png │ │ │ │ ├── heart_circle.png │ │ │ │ ├── help.png │ │ │ │ ├── help_black.png │ │ │ │ ├── home.png │ │ │ │ ├── home2.png │ │ │ │ ├── hot.png │ │ │ │ ├── inbox1.png │ │ │ │ ├── inbox2.png │ │ │ │ ├── inbox3.png │ │ │ │ ├── infinite.png │ │ │ │ ├── infinite2.png │ │ │ │ ├── info.png │ │ │ │ ├── info2.png │ │ │ │ ├── info_plain.png │ │ │ │ ├── info_plain2.png │ │ │ │ ├── json.png │ │ │ │ ├── lab.png │ │ │ │ ├── layout.png │ │ │ │ ├── link1.png │ │ │ │ ├── link2.png │ │ │ │ ├── link_black.png │ │ │ │ ├── list.png │ │ │ │ ├── locate.png │ │ │ │ ├── locate1.png │ │ │ │ ├── locate2.png │ │ │ │ ├── locate3.png │ │ │ │ ├── locate4.png │ │ │ │ ├── lock_closed.png │ │ │ │ ├── lock_open.png │ │ │ │ ├── look.png │ │ │ │ ├── loop.png │ │ │ │ ├── loop2.png │ │ │ │ ├── loop_circle.png │ │ │ │ ├── magic.png │ │ │ │ ├── mail.png │ │ │ │ ├── mail1.png │ │ │ │ ├── mail2.png │ │ │ │ ├── mail3.png │ │ │ │ ├── mail4.png │ │ │ │ ├── mail5.png │ │ │ │ ├── maps.png │ │ │ │ ├── mic.png │ │ │ │ ├── minus1.png │ │ │ │ ├── minus2.png │ │ │ │ ├── minus_black1.png │ │ │ │ ├── minus_black2.png │ │ │ │ ├── monitor1.png │ │ │ │ ├── monitor2.png │ │ │ │ ├── monitor3.png │ │ │ │ ├── monitor4.png │ │ │ │ ├── more.png │ │ │ │ ├── more2.png │ │ │ │ ├── mouse.png │ │ │ │ ├── move.png │ │ │ │ ├── music1.png │ │ │ │ ├── music2.png │ │ │ │ ├── nodes1.png │ │ │ │ ├── nodes2.png │ │ │ │ ├── note1.png │ │ │ │ ├── note2.png │ │ │ │ ├── note3.png │ │ │ │ ├── note_black.png │ │ │ │ ├── nuclear.png │ │ │ │ ├── organize.png │ │ │ │ ├── outbox.png │ │ │ │ ├── pause.png │ │ │ │ ├── phone1.png │ │ │ │ ├── phone2.png │ │ │ │ ├── phone_black.png │ │ │ │ ├── phone_ring1.png │ │ │ │ ├── phone_ring2.png │ │ │ │ ├── photo1.png │ │ │ │ ├── photo2.png │ │ │ │ ├── photo3.png │ │ │ │ ├── photo_black1.png │ │ │ │ ├── photo_black2.png │ │ │ │ ├── photos1.png │ │ │ │ ├── photos2.png │ │ │ │ ├── photos4.png │ │ │ │ ├── pictos-web.eot │ │ │ │ ├── pictos-web.svg │ │ │ │ ├── pictos-web.ttf │ │ │ │ ├── pictos-web.woff │ │ │ │ ├── piechart.png │ │ │ │ ├── play1.png │ │ │ │ ├── play2.png │ │ │ │ ├── play_black1.png │ │ │ │ ├── play_black2.png │ │ │ │ ├── podcast.png │ │ │ │ ├── power_on.png │ │ │ │ ├── power_socket.png │ │ │ │ ├── print.png │ │ │ │ ├── print2.png │ │ │ │ ├── quote1.png │ │ │ │ ├── quote2.png │ │ │ │ ├── quote_black1.png │ │ │ │ ├── quote_black2.png │ │ │ │ ├── quote_black3.png │ │ │ │ ├── refresh.png │ │ │ │ ├── refresh1.png │ │ │ │ ├── refresh2.png │ │ │ │ ├── refresh3.png │ │ │ │ ├── refresh5.png │ │ │ │ ├── reply.png │ │ │ │ ├── replytoall.png │ │ │ │ ├── resize.png │ │ │ │ ├── resize_black.png │ │ │ │ ├── rewind.png │ │ │ │ ├── right.png │ │ │ │ ├── right2.png │ │ │ │ ├── rss.png │ │ │ │ ├── rss2.png │ │ │ │ ├── rss_black.png │ │ │ │ ├── rss_black1.png │ │ │ │ ├── rss_black2.png │ │ │ │ ├── screens.png │ │ │ │ ├── search.png │ │ │ │ ├── search1.png │ │ │ │ ├── search2.png │ │ │ │ ├── search_black.png │ │ │ │ ├── server.png │ │ │ │ ├── servers.png │ │ │ │ ├── settings.png │ │ │ │ ├── settings1.png │ │ │ │ ├── settings10.png │ │ │ │ ├── settings11.png │ │ │ │ ├── settings3.png │ │ │ │ ├── settings4.png │ │ │ │ ├── settings5.png │ │ │ │ ├── settings6.png │ │ │ │ ├── settings7.png │ │ │ │ ├── settings8.png │ │ │ │ ├── settings9.png │ │ │ │ ├── settings_black.png │ │ │ │ ├── share.png │ │ │ │ ├── shield1.png │ │ │ │ ├── shield2.png │ │ │ │ ├── shop1.png │ │ │ │ ├── shop2.png │ │ │ │ ├── shuffle.png │ │ │ │ ├── sign_backforth.png │ │ │ │ ├── sign_cross.png │ │ │ │ ├── sign_leftright.png │ │ │ │ ├── sign_leftright2.png │ │ │ │ ├── sign_split.png │ │ │ │ ├── sign_switch.png │ │ │ │ ├── sign_uturn.png │ │ │ │ ├── spaces1.png │ │ │ │ ├── spaces2.png │ │ │ │ ├── speedometer1.png │ │ │ │ ├── speedometer2.png │ │ │ │ ├── speedometer_black1.png │ │ │ │ ├── speedometer_black2.png │ │ │ │ ├── star.png │ │ │ │ ├── stop.png │ │ │ │ ├── stop1.png │ │ │ │ ├── stop2.png │ │ │ │ ├── sync.png │ │ │ │ ├── tabbed_book.png │ │ │ │ ├── tag.png │ │ │ │ ├── tag_black.png │ │ │ │ ├── tags.png │ │ │ │ ├── team.png │ │ │ │ ├── team1.png │ │ │ │ ├── time.png │ │ │ │ ├── time_repeat.png │ │ │ │ ├── trash.png │ │ │ │ ├── trash2.png │ │ │ │ ├── trash_black.png │ │ │ │ ├── tree.png │ │ │ │ ├── tv.png │ │ │ │ ├── tweak.png │ │ │ │ ├── twitter1.png │ │ │ │ ├── twitter2.png │ │ │ │ ├── up1.png │ │ │ │ ├── up2.png │ │ │ │ ├── up_black.png │ │ │ │ ├── upload2.png │ │ │ │ ├── user.png │ │ │ │ ├── user3.png │ │ │ │ ├── user_add.png │ │ │ │ ├── user_business.png │ │ │ │ ├── user_fave.png │ │ │ │ ├── user_list.png │ │ │ │ ├── user_list2.png │ │ │ │ ├── user_remote1.png │ │ │ │ ├── user_remove2.png │ │ │ │ ├── user_send.png │ │ │ │ ├── video.png │ │ │ │ ├── video_black1.png │ │ │ │ ├── video_black2.png │ │ │ │ ├── volume.png │ │ │ │ ├── volume_black.png │ │ │ │ ├── volume_down.png │ │ │ │ ├── volume_mute.png │ │ │ │ ├── volume_up.png │ │ │ │ ├── warning_black.png │ │ │ │ ├── warning_dotted.png │ │ │ │ ├── wifi.png │ │ │ │ ├── wifi2.png │ │ │ │ ├── wifi3.png │ │ │ │ ├── wifi4.png │ │ │ │ └── window.png │ │ │ ├── pullarrow.png │ │ │ ├── select_mask.png │ │ │ ├── tip2_left.png │ │ │ ├── tip2_right.png │ │ │ ├── tip_bottom.png │ │ │ ├── tip_left.png │ │ │ ├── tip_right.png │ │ │ ├── tip_top.png │ │ │ ├── togglebg.png │ │ │ ├── togglemask.png │ │ │ ├── togglethumb.png │ │ │ ├── togglethumbbg.png │ │ │ ├── togglethumbmask.png │ │ │ └── trackmask_outer.png │ │ └── windows-phone │ │ │ ├── dark │ │ │ ├── check.png │ │ │ ├── clear_icon.png │ │ │ ├── disclosure.png │ │ │ ├── disclosure2.png │ │ │ ├── dotgrid.png │ │ │ ├── loading.gif │ │ │ ├── pictos │ │ │ │ ├── action.png │ │ │ │ ├── add.png │ │ │ │ ├── add1.png │ │ │ │ ├── add_black.png │ │ │ │ ├── address_book.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_left.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── at.png │ │ │ │ ├── atom.png │ │ │ │ ├── attachment.png │ │ │ │ ├── attachment2.png │ │ │ │ ├── attachment3.png │ │ │ │ ├── attachment_black.png │ │ │ │ ├── back.png │ │ │ │ ├── backspace.png │ │ │ │ ├── battery_full.png │ │ │ │ ├── battery_low.png │ │ │ │ ├── battery_power.png │ │ │ │ ├── blank.png │ │ │ │ ├── bolt.png │ │ │ │ ├── bolt_side.png │ │ │ │ ├── bookmark1.png │ │ │ │ ├── bookmark2.png │ │ │ │ ├── bookmark_black.png │ │ │ │ ├── bookmarks.png │ │ │ │ ├── briefcase1.png │ │ │ │ ├── briefcase2.png │ │ │ │ ├── brightness1.png │ │ │ │ ├── brightness2.png │ │ │ │ ├── broadcast.png │ │ │ │ ├── bug.png │ │ │ │ ├── bulb.png │ │ │ │ ├── bullseye1.png │ │ │ │ ├── bullseye2.png │ │ │ │ ├── calendar.png │ │ │ │ ├── calendar2.png │ │ │ │ ├── calendar_add.png │ │ │ │ ├── card1.png │ │ │ │ ├── card2.png │ │ │ │ ├── chart1.png │ │ │ │ ├── chart2.png │ │ │ │ ├── chart3.png │ │ │ │ ├── chat.png │ │ │ │ ├── chat1.png │ │ │ │ ├── chat2.png │ │ │ │ ├── chat3.png │ │ │ │ ├── chat4.png │ │ │ │ ├── chat_black1.png │ │ │ │ ├── chat_black2.png │ │ │ │ ├── check.png │ │ │ │ ├── check1.png │ │ │ │ ├── check2.png │ │ │ │ ├── check_black1.png │ │ │ │ ├── check_black2.png │ │ │ │ ├── check_dotted.png │ │ │ │ ├── circle.png │ │ │ │ ├── circle2.png │ │ │ │ ├── circle3.png │ │ │ │ ├── circle4.png │ │ │ │ ├── clash.png │ │ │ │ ├── cloud.png │ │ │ │ ├── cloud_black.png │ │ │ │ ├── cloud_black_upload1.png │ │ │ │ ├── cloud_black_upload2.png │ │ │ │ ├── cloud_bolt.png │ │ │ │ ├── cloud_download.png │ │ │ │ ├── code1.png │ │ │ │ ├── code2.png │ │ │ │ ├── code3.png │ │ │ │ ├── compass1.png │ │ │ │ ├── compass2.png │ │ │ │ ├── compass3.png │ │ │ │ ├── compose.png │ │ │ │ ├── compose1.png │ │ │ │ ├── compose2.png │ │ │ │ ├── compose3.png │ │ │ │ ├── compose_black.png │ │ │ │ ├── contract.png │ │ │ │ ├── cube.png │ │ │ │ ├── data.png │ │ │ │ ├── delete.png │ │ │ │ ├── delete1.png │ │ │ │ ├── delete_black1.png │ │ │ │ ├── delete_black2.png │ │ │ │ ├── doc.png │ │ │ │ ├── doc2.png │ │ │ │ ├── doc_black.png │ │ │ │ ├── doc_black_landscape.png │ │ │ │ ├── doc_compose1.png │ │ │ │ ├── doc_compose2.png │ │ │ │ ├── doc_delete.png │ │ │ │ ├── doc_down.png │ │ │ │ ├── doc_drawer.png │ │ │ │ ├── doc_list.png │ │ │ │ ├── doc_new.png │ │ │ │ ├── doc_send.png │ │ │ │ ├── doc_up.png │ │ │ │ ├── docs1.png │ │ │ │ ├── docs2.png │ │ │ │ ├── docs_black1.png │ │ │ │ ├── docs_black2.png │ │ │ │ ├── download.png │ │ │ │ ├── download1.png │ │ │ │ ├── download2.png │ │ │ │ ├── download_screen.png │ │ │ │ ├── eject.png │ │ │ │ ├── empty1.png │ │ │ │ ├── empty2.png │ │ │ │ ├── equalizer1.png │ │ │ │ ├── equalizer2.png │ │ │ │ ├── event_complete.png │ │ │ │ ├── expand.png │ │ │ │ ├── favorites.png │ │ │ │ ├── favorites1.png │ │ │ │ ├── favorites_circle.png │ │ │ │ ├── fforward.png │ │ │ │ ├── find.png │ │ │ │ ├── flag.png │ │ │ │ ├── flickr2.png │ │ │ │ ├── folder.png │ │ │ │ ├── folder_add.png │ │ │ │ ├── folder_black.png │ │ │ │ ├── folder_black_open.png │ │ │ │ ├── folder_delete.png │ │ │ │ ├── folder_delete2.png │ │ │ │ ├── folder_lock.png │ │ │ │ ├── folder_open2.png │ │ │ │ ├── font.png │ │ │ │ ├── forbidden.png │ │ │ │ ├── forward_black.png │ │ │ │ ├── globe1.png │ │ │ │ ├── globe2.png │ │ │ │ ├── globe_black.png │ │ │ │ ├── headphones.png │ │ │ │ ├── heart.png │ │ │ │ ├── heart_circle.png │ │ │ │ ├── help.png │ │ │ │ ├── help_black.png │ │ │ │ ├── home.png │ │ │ │ ├── home2.png │ │ │ │ ├── hot.png │ │ │ │ ├── inbox1.png │ │ │ │ ├── inbox2.png │ │ │ │ ├── inbox3.png │ │ │ │ ├── infinite.png │ │ │ │ ├── infinite2.png │ │ │ │ ├── info.png │ │ │ │ ├── info2.png │ │ │ │ ├── info_plain.png │ │ │ │ ├── info_plain2.png │ │ │ │ ├── json.png │ │ │ │ ├── lab.png │ │ │ │ ├── layout.png │ │ │ │ ├── link1.png │ │ │ │ ├── link2.png │ │ │ │ ├── link_black.png │ │ │ │ ├── list.png │ │ │ │ ├── locate.png │ │ │ │ ├── locate1.png │ │ │ │ ├── locate2.png │ │ │ │ ├── locate3.png │ │ │ │ ├── locate4.png │ │ │ │ ├── lock_closed.png │ │ │ │ ├── lock_open.png │ │ │ │ ├── look.png │ │ │ │ ├── loop.png │ │ │ │ ├── loop2.png │ │ │ │ ├── loop_circle.png │ │ │ │ ├── magic.png │ │ │ │ ├── mail.png │ │ │ │ ├── mail1.png │ │ │ │ ├── mail2.png │ │ │ │ ├── mail3.png │ │ │ │ ├── mail4.png │ │ │ │ ├── mail5.png │ │ │ │ ├── maps.png │ │ │ │ ├── mic.png │ │ │ │ ├── minus1.png │ │ │ │ ├── minus2.png │ │ │ │ ├── minus_black1.png │ │ │ │ ├── minus_black2.png │ │ │ │ ├── monitor1.png │ │ │ │ ├── monitor2.png │ │ │ │ ├── monitor3.png │ │ │ │ ├── monitor4.png │ │ │ │ ├── more.png │ │ │ │ ├── mouse.png │ │ │ │ ├── move.png │ │ │ │ ├── music1.png │ │ │ │ ├── music2.png │ │ │ │ ├── nodes1.png │ │ │ │ ├── nodes2.png │ │ │ │ ├── note1.png │ │ │ │ ├── note2.png │ │ │ │ ├── note3.png │ │ │ │ ├── note_black.png │ │ │ │ ├── nuclear.png │ │ │ │ ├── organize.png │ │ │ │ ├── outbox.png │ │ │ │ ├── pause.png │ │ │ │ ├── phone1.png │ │ │ │ ├── phone2.png │ │ │ │ ├── phone_black.png │ │ │ │ ├── phone_ring1.png │ │ │ │ ├── phone_ring2.png │ │ │ │ ├── photo1.png │ │ │ │ ├── photo2.png │ │ │ │ ├── photo3.png │ │ │ │ ├── photo_black1.png │ │ │ │ ├── photo_black2.png │ │ │ │ ├── photos1.png │ │ │ │ ├── photos2.png │ │ │ │ ├── photos4.png │ │ │ │ ├── piechart.png │ │ │ │ ├── play1.png │ │ │ │ ├── play2.png │ │ │ │ ├── play_black1.png │ │ │ │ ├── play_black2.png │ │ │ │ ├── podcast.png │ │ │ │ ├── power_on.png │ │ │ │ ├── power_socket.png │ │ │ │ ├── print.png │ │ │ │ ├── print2.png │ │ │ │ ├── quote1.png │ │ │ │ ├── quote2.png │ │ │ │ ├── quote_black1.png │ │ │ │ ├── quote_black2.png │ │ │ │ ├── quote_black3.png │ │ │ │ ├── refresh.png │ │ │ │ ├── refresh1.png │ │ │ │ ├── refresh2.png │ │ │ │ ├── refresh3.png │ │ │ │ ├── refresh5.png │ │ │ │ ├── reply.png │ │ │ │ ├── replytoall.png │ │ │ │ ├── resize.png │ │ │ │ ├── resize_black.png │ │ │ │ ├── rewind.png │ │ │ │ ├── right.png │ │ │ │ ├── right2.png │ │ │ │ ├── rss.png │ │ │ │ ├── rss2.png │ │ │ │ ├── rss_black.png │ │ │ │ ├── rss_black1.png │ │ │ │ ├── rss_black2.png │ │ │ │ ├── screens.png │ │ │ │ ├── search.png │ │ │ │ ├── search1.png │ │ │ │ ├── search2.png │ │ │ │ ├── search_black.png │ │ │ │ ├── server.png │ │ │ │ ├── servers.png │ │ │ │ ├── settings.png │ │ │ │ ├── settings1.png │ │ │ │ ├── settings10.png │ │ │ │ ├── settings11.png │ │ │ │ ├── settings3.png │ │ │ │ ├── settings4.png │ │ │ │ ├── settings5.png │ │ │ │ ├── settings6.png │ │ │ │ ├── settings7.png │ │ │ │ ├── settings8.png │ │ │ │ ├── settings9.png │ │ │ │ ├── settings_black.png │ │ │ │ ├── share.png │ │ │ │ ├── shield1.png │ │ │ │ ├── shield2.png │ │ │ │ ├── shop1.png │ │ │ │ ├── shop2.png │ │ │ │ ├── shuffle.png │ │ │ │ ├── sign_backforth.png │ │ │ │ ├── sign_cross.png │ │ │ │ ├── sign_leftright.png │ │ │ │ ├── sign_leftright2.png │ │ │ │ ├── sign_split.png │ │ │ │ ├── sign_switch.png │ │ │ │ ├── sign_uturn.png │ │ │ │ ├── spaces1.png │ │ │ │ ├── spaces2.png │ │ │ │ ├── speedometer1.png │ │ │ │ ├── speedometer2.png │ │ │ │ ├── speedometer_black1.png │ │ │ │ ├── speedometer_black2.png │ │ │ │ ├── star.png │ │ │ │ ├── stop.png │ │ │ │ ├── stop1.png │ │ │ │ ├── stop2.png │ │ │ │ ├── sync.png │ │ │ │ ├── tabbed_book.png │ │ │ │ ├── tag.png │ │ │ │ ├── tag_black.png │ │ │ │ ├── tags.png │ │ │ │ ├── team.png │ │ │ │ ├── team1.png │ │ │ │ ├── time.png │ │ │ │ ├── time_repeat.png │ │ │ │ ├── trash.png │ │ │ │ ├── trash2.png │ │ │ │ ├── trash_black.png │ │ │ │ ├── tree.png │ │ │ │ ├── tv.png │ │ │ │ ├── tweak.png │ │ │ │ ├── twitter1.png │ │ │ │ ├── twitter2.png │ │ │ │ ├── up1.png │ │ │ │ ├── up2.png │ │ │ │ ├── up_black.png │ │ │ │ ├── upload2.png │ │ │ │ ├── user.png │ │ │ │ ├── user3.png │ │ │ │ ├── user_add.png │ │ │ │ ├── user_business.png │ │ │ │ ├── user_fave.png │ │ │ │ ├── user_list.png │ │ │ │ ├── user_list2.png │ │ │ │ ├── user_remote1.png │ │ │ │ ├── user_remove2.png │ │ │ │ ├── user_send.png │ │ │ │ ├── video.png │ │ │ │ ├── video_black1.png │ │ │ │ ├── video_black2.png │ │ │ │ ├── volume.png │ │ │ │ ├── volume_black.png │ │ │ │ ├── volume_down.png │ │ │ │ ├── volume_mute.png │ │ │ │ ├── volume_up.png │ │ │ │ ├── warning_black.png │ │ │ │ ├── warning_dotted.png │ │ │ │ ├── wifi.png │ │ │ │ ├── wifi2.png │ │ │ │ ├── wifi3.png │ │ │ │ ├── wifi4.png │ │ │ │ └── window.png │ │ │ ├── pullarrow.png │ │ │ ├── select_mask.png │ │ │ ├── tip2_left.png │ │ │ ├── tip2_right.png │ │ │ ├── tip_bottom.png │ │ │ ├── tip_left.png │ │ │ ├── tip_right.png │ │ │ ├── tip_top.png │ │ │ ├── togglebg.png │ │ │ ├── togglemask.png │ │ │ ├── togglethumb.png │ │ │ ├── togglethumbbg.png │ │ │ ├── togglethumbmask.png │ │ │ └── trackmask_outer.png │ │ │ └── light │ │ │ ├── check.png │ │ │ ├── clear_icon.png │ │ │ ├── disclosure.png │ │ │ ├── disclosure2.png │ │ │ ├── dotgrid.png │ │ │ ├── loading.gif │ │ │ ├── pictos │ │ │ ├── action.png │ │ │ ├── add.png │ │ │ ├── add1.png │ │ │ ├── add_black.png │ │ │ ├── address_book.png │ │ │ ├── arrow_down.png │ │ │ ├── arrow_left.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_up.png │ │ │ ├── at.png │ │ │ ├── atom.png │ │ │ ├── attachment.png │ │ │ ├── attachment2.png │ │ │ ├── attachment3.png │ │ │ ├── attachment_black.png │ │ │ ├── back.png │ │ │ ├── backspace.png │ │ │ ├── battery_full.png │ │ │ ├── battery_low.png │ │ │ ├── battery_power.png │ │ │ ├── blank.png │ │ │ ├── bolt.png │ │ │ ├── bolt_side.png │ │ │ ├── bookmark1.png │ │ │ ├── bookmark2.png │ │ │ ├── bookmark_black.png │ │ │ ├── bookmarks.png │ │ │ ├── briefcase1.png │ │ │ ├── briefcase2.png │ │ │ ├── brightness1.png │ │ │ ├── brightness2.png │ │ │ ├── broadcast.png │ │ │ ├── bug.png │ │ │ ├── bulb.png │ │ │ ├── bullseye1.png │ │ │ ├── bullseye2.png │ │ │ ├── calendar.png │ │ │ ├── calendar2.png │ │ │ ├── calendar_add.png │ │ │ ├── card1.png │ │ │ ├── card2.png │ │ │ ├── chart1.png │ │ │ ├── chart2.png │ │ │ ├── chart3.png │ │ │ ├── chat.png │ │ │ ├── chat1.png │ │ │ ├── chat2.png │ │ │ ├── chat3.png │ │ │ ├── chat4.png │ │ │ ├── chat_black1.png │ │ │ ├── chat_black2.png │ │ │ ├── check.png │ │ │ ├── check1.png │ │ │ ├── check2.png │ │ │ ├── check_black1.png │ │ │ ├── check_black2.png │ │ │ ├── check_dotted.png │ │ │ ├── circle.png │ │ │ ├── circle2.png │ │ │ ├── circle3.png │ │ │ ├── circle4.png │ │ │ ├── clash.png │ │ │ ├── cloud.png │ │ │ ├── cloud_black.png │ │ │ ├── cloud_black_upload1.png │ │ │ ├── cloud_black_upload2.png │ │ │ ├── cloud_bolt.png │ │ │ ├── cloud_download.png │ │ │ ├── code1.png │ │ │ ├── code2.png │ │ │ ├── code3.png │ │ │ ├── compass1.png │ │ │ ├── compass2.png │ │ │ ├── compass3.png │ │ │ ├── compose.png │ │ │ ├── compose1.png │ │ │ ├── compose2.png │ │ │ ├── compose3.png │ │ │ ├── compose_black.png │ │ │ ├── contract.png │ │ │ ├── cube.png │ │ │ ├── data.png │ │ │ ├── delete.png │ │ │ ├── delete1.png │ │ │ ├── delete_black1.png │ │ │ ├── delete_black2.png │ │ │ ├── doc.png │ │ │ ├── doc2.png │ │ │ ├── doc_black.png │ │ │ ├── doc_black_landscape.png │ │ │ ├── doc_compose1.png │ │ │ ├── doc_compose2.png │ │ │ ├── doc_delete.png │ │ │ ├── doc_down.png │ │ │ ├── doc_drawer.png │ │ │ ├── doc_list.png │ │ │ ├── doc_new.png │ │ │ ├── doc_send.png │ │ │ ├── doc_up.png │ │ │ ├── docs1.png │ │ │ ├── docs2.png │ │ │ ├── docs_black1.png │ │ │ ├── docs_black2.png │ │ │ ├── download.png │ │ │ ├── download1.png │ │ │ ├── download2.png │ │ │ ├── download_screen.png │ │ │ ├── eject.png │ │ │ ├── empty1.png │ │ │ ├── empty2.png │ │ │ ├── equalizer1.png │ │ │ ├── equalizer2.png │ │ │ ├── event_complete.png │ │ │ ├── expand.png │ │ │ ├── favorites.png │ │ │ ├── favorites1.png │ │ │ ├── favorites_circle.png │ │ │ ├── fforward.png │ │ │ ├── find.png │ │ │ ├── flag.png │ │ │ ├── flickr2.png │ │ │ ├── folder.png │ │ │ ├── folder_add.png │ │ │ ├── folder_black.png │ │ │ ├── folder_black_open.png │ │ │ ├── folder_delete.png │ │ │ ├── folder_delete2.png │ │ │ ├── folder_lock.png │ │ │ ├── folder_open2.png │ │ │ ├── font.png │ │ │ ├── forbidden.png │ │ │ ├── forward_black.png │ │ │ ├── globe1.png │ │ │ ├── globe2.png │ │ │ ├── globe_black.png │ │ │ ├── headphones.png │ │ │ ├── heart.png │ │ │ ├── heart_circle.png │ │ │ ├── help.png │ │ │ ├── help_black.png │ │ │ ├── home.png │ │ │ ├── home2.png │ │ │ ├── hot.png │ │ │ ├── inbox1.png │ │ │ ├── inbox2.png │ │ │ ├── inbox3.png │ │ │ ├── infinite.png │ │ │ ├── infinite2.png │ │ │ ├── info.png │ │ │ ├── info2.png │ │ │ ├── info_plain.png │ │ │ ├── info_plain2.png │ │ │ ├── json.png │ │ │ ├── lab.png │ │ │ ├── layout.png │ │ │ ├── link1.png │ │ │ ├── link2.png │ │ │ ├── link_black.png │ │ │ ├── list.png │ │ │ ├── locate.png │ │ │ ├── locate1.png │ │ │ ├── locate2.png │ │ │ ├── locate3.png │ │ │ ├── locate4.png │ │ │ ├── lock_closed.png │ │ │ ├── lock_open.png │ │ │ ├── look.png │ │ │ ├── loop.png │ │ │ ├── loop2.png │ │ │ ├── loop_circle.png │ │ │ ├── magic.png │ │ │ ├── mail.png │ │ │ ├── mail1.png │ │ │ ├── mail2.png │ │ │ ├── mail3.png │ │ │ ├── mail4.png │ │ │ ├── mail5.png │ │ │ ├── maps.png │ │ │ ├── mic.png │ │ │ ├── minus1.png │ │ │ ├── minus2.png │ │ │ ├── minus_black1.png │ │ │ ├── minus_black2.png │ │ │ ├── monitor1.png │ │ │ ├── monitor2.png │ │ │ ├── monitor3.png │ │ │ ├── monitor4.png │ │ │ ├── more.png │ │ │ ├── mouse.png │ │ │ ├── move.png │ │ │ ├── music1.png │ │ │ ├── music2.png │ │ │ ├── nodes1.png │ │ │ ├── nodes2.png │ │ │ ├── note1.png │ │ │ ├── note2.png │ │ │ ├── note3.png │ │ │ ├── note_black.png │ │ │ ├── nuclear.png │ │ │ ├── organize.png │ │ │ ├── outbox.png │ │ │ ├── pause.png │ │ │ ├── phone1.png │ │ │ ├── phone2.png │ │ │ ├── phone_black.png │ │ │ ├── phone_ring1.png │ │ │ ├── phone_ring2.png │ │ │ ├── photo1.png │ │ │ ├── photo2.png │ │ │ ├── photo3.png │ │ │ ├── photo_black1.png │ │ │ ├── photo_black2.png │ │ │ ├── photos1.png │ │ │ ├── photos2.png │ │ │ ├── photos4.png │ │ │ ├── piechart.png │ │ │ ├── play1.png │ │ │ ├── play2.png │ │ │ ├── play_black1.png │ │ │ ├── play_black2.png │ │ │ ├── podcast.png │ │ │ ├── power_on.png │ │ │ ├── power_socket.png │ │ │ ├── print.png │ │ │ ├── print2.png │ │ │ ├── quote1.png │ │ │ ├── quote2.png │ │ │ ├── quote_black1.png │ │ │ ├── quote_black2.png │ │ │ ├── quote_black3.png │ │ │ ├── refresh.png │ │ │ ├── refresh1.png │ │ │ ├── refresh2.png │ │ │ ├── refresh3.png │ │ │ ├── refresh5.png │ │ │ ├── reply.png │ │ │ ├── replytoall.png │ │ │ ├── resize.png │ │ │ ├── resize_black.png │ │ │ ├── rewind.png │ │ │ ├── right.png │ │ │ ├── right2.png │ │ │ ├── rss.png │ │ │ ├── rss2.png │ │ │ ├── rss_black.png │ │ │ ├── rss_black1.png │ │ │ ├── rss_black2.png │ │ │ ├── screens.png │ │ │ ├── search.png │ │ │ ├── search1.png │ │ │ ├── search2.png │ │ │ ├── search_black.png │ │ │ ├── server.png │ │ │ ├── servers.png │ │ │ ├── settings.png │ │ │ ├── settings1.png │ │ │ ├── settings10.png │ │ │ ├── settings11.png │ │ │ ├── settings3.png │ │ │ ├── settings4.png │ │ │ ├── settings5.png │ │ │ ├── settings6.png │ │ │ ├── settings7.png │ │ │ ├── settings8.png │ │ │ ├── settings9.png │ │ │ ├── settings_black.png │ │ │ ├── share.png │ │ │ ├── shield1.png │ │ │ ├── shield2.png │ │ │ ├── shop1.png │ │ │ ├── shop2.png │ │ │ ├── shuffle.png │ │ │ ├── sign_backforth.png │ │ │ ├── sign_cross.png │ │ │ ├── sign_leftright.png │ │ │ ├── sign_leftright2.png │ │ │ ├── sign_split.png │ │ │ ├── sign_switch.png │ │ │ ├── sign_uturn.png │ │ │ ├── spaces1.png │ │ │ ├── spaces2.png │ │ │ ├── speedometer1.png │ │ │ ├── speedometer2.png │ │ │ ├── speedometer_black1.png │ │ │ ├── speedometer_black2.png │ │ │ ├── star.png │ │ │ ├── stop.png │ │ │ ├── stop1.png │ │ │ ├── stop2.png │ │ │ ├── sync.png │ │ │ ├── tabbed_book.png │ │ │ ├── tag.png │ │ │ ├── tag_black.png │ │ │ ├── tags.png │ │ │ ├── team.png │ │ │ ├── team1.png │ │ │ ├── time.png │ │ │ ├── time_repeat.png │ │ │ ├── trash.png │ │ │ ├── trash2.png │ │ │ ├── trash_black.png │ │ │ ├── tree.png │ │ │ ├── tv.png │ │ │ ├── tweak.png │ │ │ ├── twitter1.png │ │ │ ├── twitter2.png │ │ │ ├── up1.png │ │ │ ├── up2.png │ │ │ ├── up_black.png │ │ │ ├── upload2.png │ │ │ ├── user.png │ │ │ ├── user3.png │ │ │ ├── user_add.png │ │ │ ├── user_business.png │ │ │ ├── user_fave.png │ │ │ ├── user_list.png │ │ │ ├── user_list2.png │ │ │ ├── user_remote1.png │ │ │ ├── user_remove2.png │ │ │ ├── user_send.png │ │ │ ├── video.png │ │ │ ├── video_black1.png │ │ │ ├── video_black2.png │ │ │ ├── volume.png │ │ │ ├── volume_black.png │ │ │ ├── volume_down.png │ │ │ ├── volume_mute.png │ │ │ ├── volume_up.png │ │ │ ├── warning_black.png │ │ │ ├── warning_dotted.png │ │ │ ├── wifi.png │ │ │ ├── wifi2.png │ │ │ ├── wifi3.png │ │ │ ├── wifi4.png │ │ │ └── window.png │ │ │ ├── pullarrow.png │ │ │ ├── select_mask.png │ │ │ ├── tip2_left.png │ │ │ ├── tip2_right.png │ │ │ ├── tip_bottom.png │ │ │ ├── tip_left.png │ │ │ ├── tip_right.png │ │ │ ├── tip_top.png │ │ │ ├── togglebg.png │ │ │ ├── togglemask.png │ │ │ ├── togglethumb.png │ │ │ ├── togglethumbbg.png │ │ │ ├── togglethumbmask.png │ │ │ └── trackmask_outer.png │ │ ├── lib │ │ └── theme_images.rb │ │ ├── stylesheets │ │ └── sencha-touch │ │ │ ├── _base.scss │ │ │ ├── _bb10.scss │ │ │ ├── _cupertino-classic.scss │ │ │ ├── _cupertino.scss │ │ │ ├── _default.scss │ │ │ ├── _mountainview.scss │ │ │ ├── _tizen.scss │ │ │ ├── _windows.scss │ │ │ ├── base │ │ │ ├── _all.scss │ │ │ ├── mixins │ │ │ │ └── _Class.scss │ │ │ └── src │ │ │ │ ├── _Button.scss │ │ │ │ ├── _Class.scss │ │ │ │ ├── _Img.scss │ │ │ │ ├── _Map.scss │ │ │ │ ├── _Mask.scss │ │ │ │ ├── _Media.scss │ │ │ │ ├── _Menu.scss │ │ │ │ ├── _MessageBox.scss │ │ │ │ ├── _Panel.scss │ │ │ │ ├── _ProgressIndicator.scss │ │ │ │ ├── _Sheet.scss │ │ │ │ ├── _Toast.scss │ │ │ │ ├── _Toolbar.scss │ │ │ │ ├── _all.scss │ │ │ │ ├── carousel │ │ │ │ └── _Carousel.scss │ │ │ │ ├── chart │ │ │ │ └── _AbstractChart.scss │ │ │ │ ├── dataview │ │ │ │ ├── _DataView.scss │ │ │ │ ├── _IndexBar.scss │ │ │ │ └── _List.scss │ │ │ │ ├── form │ │ │ │ └── _Panel.scss │ │ │ │ ├── grid │ │ │ │ └── _Grid.scss │ │ │ │ ├── layout │ │ │ │ ├── _Abstract.scss │ │ │ │ ├── _Box.scss │ │ │ │ ├── _Card.scss │ │ │ │ ├── _Dock.scss │ │ │ │ ├── _Fit.scss │ │ │ │ └── _Float.scss │ │ │ │ ├── picker │ │ │ │ └── _Picker.scss │ │ │ │ ├── plugin │ │ │ │ ├── _ListPaging.scss │ │ │ │ └── _PullRefresh.scss │ │ │ │ ├── scroller │ │ │ │ └── _Scroller.scss │ │ │ │ ├── slider │ │ │ │ └── _Slider.scss │ │ │ │ ├── tab │ │ │ │ └── _Panel.scss │ │ │ │ ├── table │ │ │ │ └── _Table.scss │ │ │ │ └── util │ │ │ │ ├── _PaintMonitor.scss │ │ │ │ ├── _SizeMonitor.scss │ │ │ │ └── _Translatable.scss │ │ │ ├── bb10 │ │ │ ├── _all.scss │ │ │ ├── mixins │ │ │ │ └── _Class.scss │ │ │ ├── src │ │ │ │ ├── _Button.scss │ │ │ │ ├── _Class.scss │ │ │ │ ├── _Mask.scss │ │ │ │ ├── _Menu.scss │ │ │ │ ├── _MessageBox.scss │ │ │ │ ├── _Panel.scss │ │ │ │ ├── _SegmentedButton.scss │ │ │ │ ├── _Sheet.scss │ │ │ │ ├── _Toast.scss │ │ │ │ ├── _Toolbar.scss │ │ │ │ ├── _all.scss │ │ │ │ ├── carousel │ │ │ │ │ └── _Carousel.scss │ │ │ │ ├── dataview │ │ │ │ │ └── _List.scss │ │ │ │ ├── field │ │ │ │ │ ├── _Checkbox.scss │ │ │ │ │ ├── _Field.scss │ │ │ │ │ ├── _Radio.scss │ │ │ │ │ ├── _Select.scss │ │ │ │ │ └── _Spinner.scss │ │ │ │ ├── form │ │ │ │ │ ├── _FieldSet.scss │ │ │ │ │ └── _Panel.scss │ │ │ │ ├── picker │ │ │ │ │ └── _Picker.scss │ │ │ │ ├── plugin │ │ │ │ │ └── _PullRefresh.scss │ │ │ │ ├── slider │ │ │ │ │ ├── _Slider.scss │ │ │ │ │ └── _Toggle.scss │ │ │ │ └── tab │ │ │ │ │ └── _Panel.scss │ │ │ └── var │ │ │ │ └── _Class.scss │ │ │ ├── cupertino-classic │ │ │ ├── _all.scss │ │ │ ├── src │ │ │ │ ├── _Button.scss │ │ │ │ ├── _Class.scss │ │ │ │ ├── _Menu.scss │ │ │ │ ├── _MessageBox.scss │ │ │ │ ├── _Panel.scss │ │ │ │ ├── _SegmentedButton.scss │ │ │ │ ├── _Sheet.scss │ │ │ │ ├── _Toast.scss │ │ │ │ ├── _Toolbar.scss │ │ │ │ ├── _all.scss │ │ │ │ ├── carousel │ │ │ │ │ └── _Indicator.scss │ │ │ │ ├── dataview │ │ │ │ │ └── _List.scss │ │ │ │ ├── field │ │ │ │ │ ├── _Checkbox.scss │ │ │ │ │ ├── _Field.scss │ │ │ │ │ ├── _Radio.scss │ │ │ │ │ ├── _Select.scss │ │ │ │ │ ├── _Slider.scss │ │ │ │ │ ├── _Spinner.scss │ │ │ │ │ └── _TextArea.scss │ │ │ │ ├── form │ │ │ │ │ ├── _FieldSet.scss │ │ │ │ │ └── _Panel.scss │ │ │ │ ├── picker │ │ │ │ │ └── _Picker.scss │ │ │ │ ├── plugin │ │ │ │ │ └── _PullRefresh.scss │ │ │ │ ├── slider │ │ │ │ │ ├── _Slider.scss │ │ │ │ │ └── _Toggle.scss │ │ │ │ └── tab │ │ │ │ │ └── _Panel.scss │ │ │ └── var │ │ │ │ ├── _Button.scss │ │ │ │ ├── _Class.scss │ │ │ │ ├── dataview │ │ │ │ └── _List.scss │ │ │ │ ├── field │ │ │ │ ├── _Field.scss │ │ │ │ ├── _Slider.scss │ │ │ │ └── _Toggle.scss │ │ │ │ ├── form │ │ │ │ ├── _FieldSet.scss │ │ │ │ └── _Panel.scss │ │ │ │ └── picker │ │ │ │ └── _Picker.scss │ │ │ ├── cupertino │ │ │ ├── _all.scss │ │ │ ├── src │ │ │ │ ├── _Button.scss │ │ │ │ ├── _Class.scss │ │ │ │ ├── _Mask.scss │ │ │ │ ├── _Menu.scss │ │ │ │ ├── _MessageBox.scss │ │ │ │ ├── _Panel.scss │ │ │ │ ├── _SegmentedButton.scss │ │ │ │ ├── _Sheet.scss │ │ │ │ ├── _Toast.scss │ │ │ │ ├── _Toolbar.scss │ │ │ │ ├── _all.scss │ │ │ │ ├── carousel │ │ │ │ │ └── _Indicator.scss │ │ │ │ ├── dataview │ │ │ │ │ ├── _IndexBar.scss │ │ │ │ │ └── _List.scss │ │ │ │ ├── field │ │ │ │ │ ├── _Checkbox.scss │ │ │ │ │ ├── _Field.scss │ │ │ │ │ ├── _Radio.scss │ │ │ │ │ ├── _Select.scss │ │ │ │ │ ├── _Slider.scss │ │ │ │ │ ├── _Spinner.scss │ │ │ │ │ └── _TextArea.scss │ │ │ │ ├── form │ │ │ │ │ ├── _FieldSet.scss │ │ │ │ │ └── _Panel.scss │ │ │ │ ├── picker │ │ │ │ │ └── _Picker.scss │ │ │ │ ├── plugin │ │ │ │ │ └── _PullRefresh.scss │ │ │ │ ├── slider │ │ │ │ │ ├── _Slider.scss │ │ │ │ │ └── _Toggle.scss │ │ │ │ └── tab │ │ │ │ │ └── _Panel.scss │ │ │ └── var │ │ │ │ ├── _Button.scss │ │ │ │ ├── _Class.scss │ │ │ │ ├── dataview │ │ │ │ └── _List.scss │ │ │ │ ├── field │ │ │ │ ├── _Field.scss │ │ │ │ ├── _Slider.scss │ │ │ │ └── _Toggle.scss │ │ │ │ ├── form │ │ │ │ ├── _FieldSet.scss │ │ │ │ └── _Panel.scss │ │ │ │ └── picker │ │ │ │ └── _Picker.scss │ │ │ ├── default │ │ │ ├── _all.scss │ │ │ ├── mixins │ │ │ │ └── _Class.scss │ │ │ ├── src │ │ │ │ ├── _Button.scss │ │ │ │ ├── _Class.scss │ │ │ │ ├── _Menu.scss │ │ │ │ ├── _MessageBox.scss │ │ │ │ ├── _Panel.scss │ │ │ │ ├── _Sheet.scss │ │ │ │ ├── _Toast.scss │ │ │ │ ├── _Toolbar.scss │ │ │ │ ├── _all.scss │ │ │ │ ├── carousel │ │ │ │ │ └── _Carousel.scss │ │ │ │ ├── dataview │ │ │ │ │ ├── _IndexBar.scss │ │ │ │ │ └── _List.scss │ │ │ │ ├── field │ │ │ │ │ ├── _Checkbox.scss │ │ │ │ │ ├── _Field.scss │ │ │ │ │ ├── _Radio.scss │ │ │ │ │ ├── _Search.scss │ │ │ │ │ ├── _Select.scss │ │ │ │ │ ├── _Slider.scss │ │ │ │ │ ├── _Spinner.scss │ │ │ │ │ └── _TextArea.scss │ │ │ │ ├── form │ │ │ │ │ ├── _FieldSet.scss │ │ │ │ │ └── _Panel.scss │ │ │ │ ├── grid │ │ │ │ │ └── _Grid.scss │ │ │ │ ├── picker │ │ │ │ │ └── _Picker.scss │ │ │ │ ├── plugin │ │ │ │ │ ├── _ListPaging.scss │ │ │ │ │ └── _PullRefresh.scss │ │ │ │ ├── slider │ │ │ │ │ ├── _Slider.scss │ │ │ │ │ └── _Toggle.scss │ │ │ │ └── tab │ │ │ │ │ └── _Panel.scss │ │ │ └── var │ │ │ │ ├── _Button.scss │ │ │ │ ├── _Class.scss │ │ │ │ ├── _Panel.scss │ │ │ │ ├── _Sheet.scss │ │ │ │ ├── _Toolbar.scss │ │ │ │ ├── carousel │ │ │ │ └── _Carousel.scss │ │ │ │ ├── dataview │ │ │ │ ├── _IndexBar.scss │ │ │ │ └── _List.scss │ │ │ │ ├── field │ │ │ │ ├── _Field.scss │ │ │ │ ├── _Slider.scss │ │ │ │ ├── _Spinner.scss │ │ │ │ ├── _TextArea.scss │ │ │ │ └── _Toggle.scss │ │ │ │ ├── form │ │ │ │ ├── _FieldSet.scss │ │ │ │ └── _Panel.scss │ │ │ │ ├── picker │ │ │ │ └── _Picker.scss │ │ │ │ └── tab │ │ │ │ └── _Panel.scss │ │ │ ├── mountainview │ │ │ ├── _all.scss │ │ │ ├── src │ │ │ │ ├── _Button.scss │ │ │ │ ├── _Class.scss │ │ │ │ ├── _Menu.scss │ │ │ │ ├── _MessageBox.scss │ │ │ │ ├── _Panel.scss │ │ │ │ ├── _SegmentedButton.scss │ │ │ │ ├── _Sheet.scss │ │ │ │ ├── _Toast.scss │ │ │ │ ├── _Toolbar.scss │ │ │ │ ├── _all.scss │ │ │ │ ├── dataview │ │ │ │ │ └── _List.scss │ │ │ │ ├── field │ │ │ │ │ ├── _Checkbox.scss │ │ │ │ │ ├── _Field.scss │ │ │ │ │ ├── _Radio.scss │ │ │ │ │ ├── _Select.scss │ │ │ │ │ ├── _Slider.scss │ │ │ │ │ ├── _Spinner.scss │ │ │ │ │ └── _TextArea.scss │ │ │ │ ├── form │ │ │ │ │ ├── _FieldSet.scss │ │ │ │ │ └── _Panel.scss │ │ │ │ ├── picker │ │ │ │ │ └── _Picker.scss │ │ │ │ ├── slider │ │ │ │ │ ├── _Slider.scss │ │ │ │ │ └── _Toggle.scss │ │ │ │ └── tab │ │ │ │ │ └── _Panel.scss │ │ │ └── var │ │ │ │ ├── _Button.scss │ │ │ │ ├── _Class.scss │ │ │ │ ├── dataview │ │ │ │ └── _List.scss │ │ │ │ ├── field │ │ │ │ ├── _Field.scss │ │ │ │ ├── _Slider.scss │ │ │ │ └── _Toggle.scss │ │ │ │ ├── form │ │ │ │ ├── _FieldSet.scss │ │ │ │ └── _Panel.scss │ │ │ │ └── picker │ │ │ │ └── _Picker.scss │ │ │ ├── tizen │ │ │ ├── _all.scss │ │ │ ├── base │ │ │ │ ├── src │ │ │ │ │ ├── _Button.scss │ │ │ │ │ ├── _Class.scss │ │ │ │ │ ├── _Icons.scss │ │ │ │ │ ├── _Mask.scss │ │ │ │ │ ├── _Menu.scss │ │ │ │ │ ├── _MessageBox.scss │ │ │ │ │ ├── _Panel.scss │ │ │ │ │ ├── _SegmentedButton.scss │ │ │ │ │ ├── _Toast.scss │ │ │ │ │ ├── _Toolbar.scss │ │ │ │ │ ├── _all.scss │ │ │ │ │ ├── carousel │ │ │ │ │ │ └── _Indicator.scss │ │ │ │ │ ├── dataview │ │ │ │ │ │ └── _List.scss │ │ │ │ │ ├── field │ │ │ │ │ │ ├── _Checkbox.scss │ │ │ │ │ │ ├── _Field.scss │ │ │ │ │ │ ├── _Radio.scss │ │ │ │ │ │ ├── _Spinner.scss │ │ │ │ │ │ └── _TextArea.scss │ │ │ │ │ ├── form │ │ │ │ │ │ ├── _FieldSet.scss │ │ │ │ │ │ └── _Panel.scss │ │ │ │ │ ├── picker │ │ │ │ │ │ └── _Picker.scss │ │ │ │ │ ├── slider │ │ │ │ │ │ ├── _Slider.scss │ │ │ │ │ │ └── _Toggle.scss │ │ │ │ │ └── tab │ │ │ │ │ │ └── _Panel.scss │ │ │ │ └── var │ │ │ │ │ ├── _Button.scss │ │ │ │ │ ├── _Class.scss │ │ │ │ │ ├── _Mask.scss │ │ │ │ │ ├── _Palette.scss │ │ │ │ │ ├── _Panel.scss │ │ │ │ │ ├── _all.scss │ │ │ │ │ ├── dataview │ │ │ │ │ └── _List.scss │ │ │ │ │ ├── field │ │ │ │ │ └── _Radio.scss │ │ │ │ │ └── slider │ │ │ │ │ ├── _Slider.scss │ │ │ │ │ └── _Toggle.scss │ │ │ └── variations │ │ │ │ ├── dark │ │ │ │ ├── src │ │ │ │ │ ├── _Button.scss │ │ │ │ │ ├── _Class.scss │ │ │ │ │ ├── _Icons.scss │ │ │ │ │ ├── _Mask.scss │ │ │ │ │ ├── _Menu.scss │ │ │ │ │ ├── _MessageBox.scss │ │ │ │ │ ├── _Panel.scss │ │ │ │ │ ├── _SegmentedButton.scss │ │ │ │ │ ├── _Toast.scss │ │ │ │ │ ├── _Toolbar.scss │ │ │ │ │ ├── _all.scss │ │ │ │ │ ├── carousel │ │ │ │ │ │ └── _Indicator.scss │ │ │ │ │ ├── dataview │ │ │ │ │ │ └── _List.scss │ │ │ │ │ ├── field │ │ │ │ │ │ ├── _Checkbox.scss │ │ │ │ │ │ ├── _Field.scss │ │ │ │ │ │ ├── _Radio.scss │ │ │ │ │ │ └── _Spinner.scss │ │ │ │ │ ├── form │ │ │ │ │ │ ├── _FieldSet.scss │ │ │ │ │ │ └── _Panel.scss │ │ │ │ │ ├── picker │ │ │ │ │ │ └── _Picker.scss │ │ │ │ │ ├── slider │ │ │ │ │ │ ├── _Slider.scss │ │ │ │ │ │ └── _Toggle.scss │ │ │ │ │ └── tab │ │ │ │ │ │ └── _Panel.scss │ │ │ │ └── var │ │ │ │ │ ├── _Button.scss │ │ │ │ │ ├── _Class.scss │ │ │ │ │ ├── _Mask.scss │ │ │ │ │ ├── _Menu.scss │ │ │ │ │ ├── _MessageBox.scss │ │ │ │ │ ├── _Palette.scss │ │ │ │ │ ├── _Panel.scss │ │ │ │ │ ├── _SegmentedButton.scss │ │ │ │ │ ├── _Toolbar.scss │ │ │ │ │ ├── _all.scss │ │ │ │ │ ├── carousel │ │ │ │ │ └── _Indicator.scss │ │ │ │ │ ├── dataview │ │ │ │ │ └── _List.scss │ │ │ │ │ ├── field │ │ │ │ │ ├── _Checkbox.scss │ │ │ │ │ ├── _Field.scss │ │ │ │ │ ├── _Radio.scss │ │ │ │ │ └── _Spinner.scss │ │ │ │ │ ├── form │ │ │ │ │ ├── _FieldSet.scss │ │ │ │ │ └── _Panel.scss │ │ │ │ │ ├── picker │ │ │ │ │ └── _Picker.scss │ │ │ │ │ ├── slider │ │ │ │ │ ├── _Slider.scss │ │ │ │ │ └── _Toggle.scss │ │ │ │ │ └── tab │ │ │ │ │ └── _Panel.scss │ │ │ │ └── light │ │ │ │ ├── src │ │ │ │ ├── _Button.scss │ │ │ │ ├── _Class.scss │ │ │ │ ├── _Icons.scss │ │ │ │ ├── _Mask.scss │ │ │ │ ├── _Menu.scss │ │ │ │ ├── _MessageBox.scss │ │ │ │ ├── _Panel.scss │ │ │ │ ├── _SegmentedButton.scss │ │ │ │ ├── _Toast.scss │ │ │ │ ├── _Toolbar.scss │ │ │ │ ├── _all.scss │ │ │ │ ├── carousel │ │ │ │ │ └── _Indicator.scss │ │ │ │ ├── dataview │ │ │ │ │ └── _List.scss │ │ │ │ ├── field │ │ │ │ │ ├── _Checkbox.scss │ │ │ │ │ ├── _Field.scss │ │ │ │ │ ├── _Radio.scss │ │ │ │ │ └── _Spinner.scss │ │ │ │ ├── form │ │ │ │ │ ├── _FieldSet.scss │ │ │ │ │ └── _Panel.scss │ │ │ │ ├── picker │ │ │ │ │ └── _Picker.scss │ │ │ │ ├── slider │ │ │ │ │ ├── _Slider.scss │ │ │ │ │ └── _Toggle.scss │ │ │ │ └── tab │ │ │ │ │ └── _Panel.scss │ │ │ │ └── var │ │ │ │ ├── _Button.scss │ │ │ │ ├── _Class.scss │ │ │ │ ├── _Mask.scss │ │ │ │ ├── _Menu.scss │ │ │ │ ├── _MessageBox.scss │ │ │ │ ├── _Palette.scss │ │ │ │ ├── _Panel.scss │ │ │ │ ├── _SegmentedButton.scss │ │ │ │ ├── _Toolbar.scss │ │ │ │ ├── _all.scss │ │ │ │ ├── carousel │ │ │ │ └── _Indicator.scss │ │ │ │ ├── dataview │ │ │ │ └── _List.scss │ │ │ │ ├── field │ │ │ │ ├── _Checkbox.scss │ │ │ │ ├── _Field.scss │ │ │ │ ├── _Radio.scss │ │ │ │ └── _Spinner.scss │ │ │ │ ├── form │ │ │ │ ├── _FieldSet.scss │ │ │ │ └── _Panel.scss │ │ │ │ ├── picker │ │ │ │ └── _Picker.scss │ │ │ │ ├── slider │ │ │ │ ├── _Slider.scss │ │ │ │ └── _Toggle.scss │ │ │ │ └── tab │ │ │ │ └── _Panel.scss │ │ │ └── windows │ │ │ ├── _all.scss │ │ │ ├── mixins │ │ │ └── _Class.scss │ │ │ ├── src │ │ │ ├── _Button.scss │ │ │ ├── _Class.scss │ │ │ ├── _Menu.scss │ │ │ ├── _MessageBox.scss │ │ │ ├── _Panel.scss │ │ │ ├── _SegmentedButton.scss │ │ │ ├── _Sheet.scss │ │ │ ├── _Toast.scss │ │ │ ├── _Toolbar.scss │ │ │ ├── _all.scss │ │ │ ├── carousel │ │ │ │ └── _Carousel.scss │ │ │ ├── dataview │ │ │ │ └── _List.scss │ │ │ ├── field │ │ │ │ ├── _Checkbox.scss │ │ │ │ ├── _Field.scss │ │ │ │ ├── _Radio.scss │ │ │ │ ├── _Spinner.scss │ │ │ │ └── _TextArea.scss │ │ │ ├── form │ │ │ │ ├── _FieldSet.scss │ │ │ │ └── _Panel.scss │ │ │ ├── grid │ │ │ │ └── _Grid.scss │ │ │ ├── picker │ │ │ │ └── _Picker.scss │ │ │ ├── plugin │ │ │ │ └── _PullRefresh.scss │ │ │ ├── slider │ │ │ │ ├── _Slider.scss │ │ │ │ └── _Toggle.scss │ │ │ └── tab │ │ │ │ └── _Panel.scss │ │ │ └── var │ │ │ ├── _Button.scss │ │ │ ├── _Class.scss │ │ │ ├── _Panel.scss │ │ │ ├── _Sheet.scss │ │ │ ├── _Toolbar.scss │ │ │ ├── carousel │ │ │ └── _Carousel.scss │ │ │ └── picker │ │ │ └── _Picker.scss │ │ ├── templates │ │ └── project │ │ │ ├── manifest.rb │ │ │ └── sencha-touch.scss │ │ └── vendor │ │ └── compass-recipes │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Rakefile.rb │ │ ├── VERSION │ │ ├── compass-recipes.gemspec │ │ ├── config.rb │ │ ├── fonts │ │ ├── OFL-FAQ.txt │ │ ├── OFL.txt │ │ ├── heydings │ │ │ └── heydings_icons.ttf │ │ ├── iconic │ │ │ ├── demo.html │ │ │ ├── iconic.css │ │ │ ├── iconic_stroke.eot │ │ │ ├── iconic_stroke.otf │ │ │ ├── iconic_stroke.svg │ │ │ └── iconic_stroke.ttf │ │ └── websymbols │ │ │ ├── websymbols-regular-webfont.eot │ │ │ ├── websymbols-regular-webfont.svg │ │ │ └── websymbols-regular-webfont.ttf │ │ ├── lib │ │ ├── compass-recipes.rb │ │ └── compass-recipes │ │ │ └── sass_extensions.rb │ │ ├── stylesheets │ │ ├── _recipes.scss │ │ └── recipes │ │ │ ├── _background.scss │ │ │ ├── _color.scss │ │ │ ├── _effect.scss │ │ │ ├── _form.scss │ │ │ ├── _google-webfont.scss │ │ │ ├── _icons.scss │ │ │ ├── _layout.scss │ │ │ ├── _media-queries.scss │ │ │ ├── _shadow.scss │ │ │ ├── _shape.scss │ │ │ ├── _shared.scss │ │ │ ├── _ui.scss │ │ │ ├── _webfont-icon.scss │ │ │ ├── animation │ │ │ └── _keyframes.scss │ │ │ ├── background │ │ │ ├── _blueprint-grid.scss │ │ │ ├── _carbon-fiber.scss │ │ │ ├── _checkerboard.scss │ │ │ ├── _cicada.scss │ │ │ ├── _gradients.scss │ │ │ ├── _houndstooth.scss │ │ │ ├── _lined-paper.scss │ │ │ ├── _madras.scss │ │ │ ├── _noise.scss │ │ │ ├── _polka-dot.scss │ │ │ ├── _radial-overlay.scss │ │ │ ├── _striped.scss │ │ │ ├── _stripes.scss │ │ │ ├── _tablecloth.scss │ │ │ └── _tartan.scss │ │ │ ├── effect │ │ │ ├── _bevel.scss │ │ │ ├── _corner-folded.scss │ │ │ ├── _cutout.scss │ │ │ ├── _folded-corner.scss │ │ │ ├── _glass.scss │ │ │ └── _tape.scss │ │ │ ├── form │ │ │ ├── _element.scss │ │ │ ├── _skin.scss │ │ │ ├── element │ │ │ │ └── _inline.scss │ │ │ └── skin │ │ │ │ └── _natural.scss │ │ │ ├── layout │ │ │ ├── _flexible-box-model.scss │ │ │ ├── _grid.scss │ │ │ └── _vertical-align.scss │ │ │ ├── shadow │ │ │ ├── _drop.scss │ │ │ ├── _top-edge.scss │ │ │ └── drop │ │ │ │ ├── _curled-corners.scss │ │ │ │ ├── _curved.scss │ │ │ │ ├── _flying.scss │ │ │ │ ├── _lifted-corners.scss │ │ │ │ ├── _perspective.scss │ │ │ │ ├── _raised.scss │ │ │ │ └── _transform-requirement.scss │ │ │ ├── shape │ │ │ ├── _ellipse.scss │ │ │ ├── _polygon.scss │ │ │ ├── _symbol.scss │ │ │ ├── polygon │ │ │ │ ├── _hexagon.scss │ │ │ │ ├── _octagon.scss │ │ │ │ ├── _parallelogram.scss │ │ │ │ ├── _pentagon.scss │ │ │ │ ├── _rectangle.scss │ │ │ │ ├── _rhombus.scss │ │ │ │ ├── _square.scss │ │ │ │ ├── _star.scss │ │ │ │ ├── _trapezoid.scss │ │ │ │ └── _triangle.scss │ │ │ └── symbol │ │ │ │ ├── _diamond.scss │ │ │ │ ├── _egg.scss │ │ │ │ ├── _heart.scss │ │ │ │ ├── _infinity.scss │ │ │ │ ├── _pacman.scss │ │ │ │ └── _yin-yang.scss │ │ │ ├── shared │ │ │ ├── _block-inline-block.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _list-inline-block.scss │ │ │ ├── _pseudo-element.scss │ │ │ └── _user-select.scss │ │ │ └── ui │ │ │ ├── _convex.scss │ │ │ ├── _glossy.scss │ │ │ ├── _gradient.scss │ │ │ ├── _helper.scss │ │ │ ├── _keyboard.scss │ │ │ ├── _menu.scss │ │ │ ├── _overlay.scss │ │ │ ├── _separator.scss │ │ │ ├── border │ │ │ └── _bevel.scss │ │ │ ├── helper │ │ │ └── _arrow.scss │ │ │ └── menu │ │ │ └── _dropdown.scss │ │ └── tests │ │ ├── _tests.scss │ │ └── recipes │ │ ├── background │ │ ├── index.html │ │ ├── s.css │ │ └── s.scss │ │ ├── color │ │ ├── index.html │ │ ├── s.css │ │ └── s.scss │ │ ├── effect │ │ ├── bevel │ │ │ ├── index.html │ │ │ ├── s.css │ │ │ └── s.scss │ │ ├── corner-folded │ │ │ ├── index.html │ │ │ ├── s.css │ │ │ └── s.scss │ │ ├── cutout │ │ │ ├── index.html │ │ │ ├── s.css │ │ │ └── s.scss │ │ ├── glass │ │ │ ├── index.html │ │ │ ├── s.css │ │ │ └── s.scss │ │ └── index.html │ │ ├── form │ │ ├── element │ │ │ └── inline │ │ │ │ ├── index.html │ │ │ │ ├── s.css │ │ │ │ └── s.scss │ │ ├── index.html │ │ └── skin │ │ │ ├── index.html │ │ │ └── natural │ │ │ ├── index.html │ │ │ ├── s.css │ │ │ └── s.scss │ │ ├── google-webfont │ │ ├── index.html │ │ ├── s.css │ │ └── s.scss │ │ ├── index.html │ │ ├── layout │ │ ├── grid │ │ │ ├── index.html │ │ │ ├── s.css │ │ │ └── s.scss │ │ ├── index.html │ │ └── vertical-align │ │ │ ├── index.html │ │ │ ├── s.css │ │ │ └── s.scss │ │ ├── media-queries │ │ ├── index.html │ │ └── s.scssx │ │ ├── shadow │ │ ├── drop │ │ │ ├── curved │ │ │ │ ├── index.html │ │ │ │ ├── s.css │ │ │ │ └── s.scss │ │ │ ├── index.html │ │ │ ├── s.css │ │ │ └── s.scss │ │ └── index.html │ │ ├── shape │ │ ├── ellipse │ │ │ ├── index.html │ │ │ ├── s.css │ │ │ └── s.scss │ │ ├── index.html │ │ ├── polygon │ │ │ ├── index.html │ │ │ ├── s.css │ │ │ ├── s.scss │ │ │ ├── star │ │ │ │ ├── index.html │ │ │ │ ├── s.css │ │ │ │ └── s.scss │ │ │ └── triangle │ │ │ │ ├── index.html │ │ │ │ ├── s.css │ │ │ │ └── s.scss │ │ └── symbol │ │ │ ├── index.html │ │ │ ├── s.css │ │ │ └── s.scss │ │ ├── shared │ │ ├── clearfix │ │ │ ├── index.html │ │ │ ├── s.css │ │ │ └── s.scss │ │ └── index.html │ │ └── ui │ │ ├── convex │ │ ├── index.html │ │ ├── s.css │ │ └── s.scss │ │ ├── gradient │ │ ├── index.html │ │ ├── s.css │ │ └── s.scss │ │ ├── index.html │ │ ├── keyboard │ │ ├── index.html │ │ ├── s.css │ │ └── s.scss │ │ ├── menu │ │ ├── dropdown │ │ │ ├── index.html │ │ │ ├── s.css │ │ │ └── s.scss │ │ └── index.html │ │ ├── overlay │ │ ├── index.html │ │ ├── s.css │ │ └── s.scss │ │ ├── separator │ │ ├── index.html │ │ ├── s.css │ │ └── s.scss │ │ └── webfont-icons │ │ ├── index.html │ │ ├── s.css │ │ └── s.scss ├── sencha-touch-all-debug.js ├── sencha-touch-all.js ├── sencha-touch-debug.js ├── sencha-touch.js ├── src │ ├── AbstractComponent.js │ ├── AbstractManager.js │ ├── AbstractPlugin.js │ ├── ActionSheet.js │ ├── Ajax.js │ ├── Anim.js │ ├── AnimationQueue.js │ ├── Audio.js │ ├── BingMap.js │ ├── Button.js │ ├── Component.js │ ├── ComponentManager.js │ ├── ComponentQuery.js │ ├── Container.js │ ├── DateExtras.js │ ├── Decorator.js │ ├── Evented.js │ ├── Img.js │ ├── ItemCollection.js │ ├── Label.js │ ├── LoadMask.js │ ├── Map.js │ ├── Mask.js │ ├── Media.js │ ├── Menu.js │ ├── MessageBox.js │ ├── Panel.js │ ├── ProgressIndicator.js │ ├── Promise.js │ ├── SegmentedButton.js │ ├── Sheet.js │ ├── Sortable.js │ ├── Spacer.js │ ├── TaskQueue.js │ ├── Template.js │ ├── Title.js │ ├── TitleBar.js │ ├── Toast.js │ ├── Toolbar.js │ ├── Video.js │ ├── XTemplate.js │ ├── XTemplateCompiler.js │ ├── XTemplateParser.js │ ├── app │ │ ├── Action.js │ │ ├── Application.js │ │ ├── Controller.js │ │ ├── History.js │ │ ├── Profile.js │ │ ├── Route.js │ │ └── Router.js │ ├── behavior │ │ ├── Behavior.js │ │ ├── Draggable.js │ │ ├── Droppable.js │ │ ├── Scrollable.js │ │ ├── Sortable.js │ │ └── Translatable.js │ ├── carousel │ │ ├── Carousel.js │ │ ├── Indicator.js │ │ ├── Infinite.js │ │ └── Item.js │ ├── chart │ │ ├── AbstractChart.js │ │ ├── CartesianChart.js │ │ ├── Legend.js │ │ ├── MarkerHolder.js │ │ ├── Markers.js │ │ ├── PolarChart.js │ │ ├── SpaceFillingChart.js │ │ ├── axis │ │ │ ├── Axis.js │ │ │ ├── Category.js │ │ │ ├── Numeric.js │ │ │ ├── Time.js │ │ │ ├── layout │ │ │ │ ├── CombineDuplicate.js │ │ │ │ ├── Continuous.js │ │ │ │ ├── Discrete.js │ │ │ │ └── Layout.js │ │ │ ├── segmenter │ │ │ │ ├── Names.js │ │ │ │ ├── Numeric.js │ │ │ │ ├── Segmenter.js │ │ │ │ └── Time.js │ │ │ └── sprite │ │ │ │ └── Axis.js │ │ ├── grid │ │ │ ├── CircularGrid.js │ │ │ ├── HorizontalGrid.js │ │ │ ├── RadialGrid.js │ │ │ └── VerticalGrid.js │ │ ├── interactions │ │ │ ├── Abstract.js │ │ │ ├── CrossZoom.js │ │ │ ├── Crosshair.js │ │ │ ├── ItemHighlight.js │ │ │ ├── ItemInfo.js │ │ │ ├── PanZoom.js │ │ │ ├── Rotate.js │ │ │ └── RotatePie3D.js │ │ ├── label │ │ │ ├── Callout.js │ │ │ └── Label.js │ │ └── series │ │ │ ├── Area.js │ │ │ ├── Bar.js │ │ │ ├── CandleStick.js │ │ │ ├── Cartesian.js │ │ │ ├── Gauge.js │ │ │ ├── ItemPublisher.js │ │ │ ├── Line.js │ │ │ ├── Pie.js │ │ │ ├── Pie3D.js │ │ │ ├── Polar.js │ │ │ ├── Radar.js │ │ │ ├── Scatter.js │ │ │ ├── Series.js │ │ │ ├── StackedCartesian.js │ │ │ └── sprite │ │ │ ├── Aggregative.js │ │ │ ├── Area.js │ │ │ ├── Bar.js │ │ │ ├── CandleStick.js │ │ │ ├── Cartesian.js │ │ │ ├── Line.js │ │ │ ├── Pie3DPart.js │ │ │ ├── PieSlice.js │ │ │ ├── Polar.js │ │ │ ├── Radar.js │ │ │ ├── Scatter.js │ │ │ └── StackedCartesian.js │ ├── core │ │ ├── EventManager.js │ │ ├── Ext-more.js │ │ ├── Ext.js │ │ ├── class │ │ │ ├── Base.js │ │ │ ├── Class.js │ │ │ ├── ClassManager.js │ │ │ └── Loader.js │ │ ├── lang │ │ │ ├── Array.js │ │ │ ├── Date.js │ │ │ ├── Error.js │ │ │ ├── Function.js │ │ │ ├── JSON.js │ │ │ ├── Number.js │ │ │ ├── Object.js │ │ │ └── String.js │ │ └── version │ │ │ └── Version.js │ ├── data │ │ ├── ArrayStore.js │ │ ├── Batch.js │ │ ├── Connection.js │ │ ├── DirectStore.js │ │ ├── Error.js │ │ ├── Errors.js │ │ ├── Field.js │ │ ├── JsonP.js │ │ ├── JsonStore.js │ │ ├── Model.js │ │ ├── ModelManager.js │ │ ├── NodeInterface.js │ │ ├── NodeStore.js │ │ ├── Operation.js │ │ ├── Request.js │ │ ├── ResultSet.js │ │ ├── SortTypes.js │ │ ├── Store.js │ │ ├── StoreManager.js │ │ ├── TreeStore.js │ │ ├── Types.js │ │ ├── Validations.js │ │ ├── association │ │ │ ├── Association.js │ │ │ ├── BelongsTo.js │ │ │ ├── HasMany.js │ │ │ └── HasOne.js │ │ ├── identifier │ │ │ ├── Sequential.js │ │ │ ├── Simple.js │ │ │ └── Uuid.js │ │ ├── plugin │ │ │ └── Buffered.js │ │ ├── proxy │ │ │ ├── Ajax.js │ │ │ ├── Client.js │ │ │ ├── Direct.js │ │ │ ├── JsonP.js │ │ │ ├── LocalStorage.js │ │ │ ├── Memory.js │ │ │ ├── Proxy.js │ │ │ ├── Rest.js │ │ │ ├── Server.js │ │ │ ├── SessionStorage.js │ │ │ ├── Sql.js │ │ │ └── WebStorage.js │ │ ├── reader │ │ │ ├── Array.js │ │ │ ├── Json.js │ │ │ ├── Reader.js │ │ │ └── Xml.js │ │ └── writer │ │ │ ├── Json.js │ │ │ ├── Writer.js │ │ │ └── Xml.js │ ├── dataview │ │ ├── DataView.js │ │ ├── IndexBar.js │ │ ├── List.js │ │ ├── ListItemHeader.js │ │ ├── NestedList.js │ │ ├── component │ │ │ ├── Container.js │ │ │ ├── DataItem.js │ │ │ ├── ListItem.js │ │ │ └── SimpleListItem.js │ │ └── element │ │ │ ├── Container.js │ │ │ └── List.js │ ├── device │ │ ├── Accelerometer.js │ │ ├── Browser.js │ │ ├── Camera.js │ │ ├── Capture.js │ │ ├── Communicator.js │ │ ├── Compass.js │ │ ├── Connection.js │ │ ├── Contacts.js │ │ ├── Device.js │ │ ├── FileSystem.js │ │ ├── Geolocation.js │ │ ├── Globalization.js │ │ ├── Media.js │ │ ├── Notification.js │ │ ├── Orientation.js │ │ ├── Purchases.js │ │ ├── Push.js │ │ ├── SQLite.js │ │ ├── Splashscreen.js │ │ ├── Storage.js │ │ ├── Tunnel.js │ │ ├── accelerometer │ │ │ ├── Abstract.js │ │ │ ├── Cordova.js │ │ │ └── Simulator.js │ │ ├── browser │ │ │ ├── Abstract.js │ │ │ ├── Cordova.js │ │ │ ├── Simulator.js │ │ │ └── Window.js │ │ ├── camera │ │ │ ├── Abstract.js │ │ │ ├── Cordova.js │ │ │ ├── Sencha.js │ │ │ └── Simulator.js │ │ ├── capture │ │ │ ├── Abstract.js │ │ │ └── Cordova.js │ │ ├── communicator │ │ │ ├── Android.js │ │ │ └── Default.js │ │ ├── compass │ │ │ ├── Abstract.js │ │ │ ├── Cordova.js │ │ │ └── Simulator.js │ │ ├── connection │ │ │ ├── Abstract.js │ │ │ ├── Cordova.js │ │ │ ├── Sencha.js │ │ │ └── Simulator.js │ │ ├── contacts │ │ │ ├── Abstract.js │ │ │ ├── Cordova.js │ │ │ └── Sencha.js │ │ ├── device │ │ │ ├── Abstract.js │ │ │ ├── Cordova.js │ │ │ ├── Sencha.js │ │ │ └── Simulator.js │ │ ├── filesystem │ │ │ ├── Abstract.js │ │ │ ├── Chrome.js │ │ │ ├── Cordova.js │ │ │ ├── HTML5.js │ │ │ ├── Sencha.js │ │ │ └── Simulator.js │ │ ├── geolocation │ │ │ ├── Abstract.js │ │ │ ├── Cordova.js │ │ │ ├── Sencha.js │ │ │ └── Simulator.js │ │ ├── globalization │ │ │ ├── Abstract.js │ │ │ ├── Cordova.js │ │ │ └── Simulator.js │ │ ├── media │ │ │ ├── Abstract.js │ │ │ └── Cordova.js │ │ ├── notification │ │ │ ├── Abstract.js │ │ │ ├── Cordova.js │ │ │ ├── Sencha.js │ │ │ └── Simulator.js │ │ ├── orientation │ │ │ ├── Abstract.js │ │ │ ├── HTML5.js │ │ │ └── Sencha.js │ │ ├── purchases │ │ │ └── Sencha.js │ │ ├── push │ │ │ ├── Abstract.js │ │ │ ├── Cordova.js │ │ │ └── Sencha.js │ │ ├── splashscreen │ │ │ ├── Abstract.js │ │ │ ├── Cordova.js │ │ │ └── Simulator.js │ │ ├── sqlite │ │ │ └── Sencha.js │ │ ├── storage │ │ │ ├── Abstract.js │ │ │ ├── Cordova.js │ │ │ ├── HTML5 │ │ │ │ ├── Database.js │ │ │ │ ├── HTML5.js │ │ │ │ └── SQLStatement.js │ │ │ └── Simulator.js │ │ └── tunnel │ │ │ ├── Abstract.js │ │ │ ├── Connection.js │ │ │ ├── Sencha.js │ │ │ └── Simulator.js │ ├── direct │ │ ├── Event.js │ │ ├── ExceptionEvent.js │ │ ├── JsonProvider.js │ │ ├── Manager.js │ │ ├── PollingProvider.js │ │ ├── Provider.js │ │ ├── RemotingEvent.js │ │ ├── RemotingMethod.js │ │ ├── RemotingProvider.js │ │ └── Transaction.js │ ├── dom │ │ ├── CompositeElement.js │ │ ├── CompositeElementLite.js │ │ ├── Element.alignment.js │ │ ├── Element.insertion.js │ │ ├── Element.js │ │ ├── Element.position.js │ │ ├── Element.static.js │ │ ├── Element.style.js │ │ ├── Element.traversal.js │ │ ├── Helper.js │ │ └── Query.js │ ├── draw │ │ ├── Animator.js │ │ ├── Color.js │ │ ├── Component.js │ │ ├── Draw.js │ │ ├── LimitedCache.js │ │ ├── Matrix.js │ │ ├── Path.js │ │ ├── SegmentTree.js │ │ ├── Solver.js │ │ ├── Surface.js │ │ ├── TextMeasurer.js │ │ ├── TimingFunctions.js │ │ ├── engine │ │ │ ├── Canvas.js │ │ │ ├── Svg.js │ │ │ ├── SvgContext.js │ │ │ └── SvgExporter.js │ │ ├── gradient │ │ │ ├── Gradient.js │ │ │ ├── GradientDefinition.js │ │ │ ├── Linear.js │ │ │ └── Radial.js │ │ ├── modifier │ │ │ ├── Animation.js │ │ │ ├── Highlight.js │ │ │ ├── Modifier.js │ │ │ └── Target.js │ │ └── sprite │ │ │ ├── AnimationParser.js │ │ │ ├── Arc.js │ │ │ ├── AttributeDefinition.js │ │ │ ├── AttributeParser.js │ │ │ ├── Circle.js │ │ │ ├── Composite.js │ │ │ ├── Ellipse.js │ │ │ ├── EllipticalArc.js │ │ │ ├── Image.js │ │ │ ├── Instancing.js │ │ │ ├── Line.js │ │ │ ├── Path.js │ │ │ ├── Rect.js │ │ │ ├── Sector.js │ │ │ ├── Sprite.js │ │ │ └── Text.js │ ├── env │ │ ├── Browser.js │ │ ├── Feature.js │ │ └── OS.js │ ├── event │ │ ├── Controller.js │ │ ├── Dispatcher.js │ │ ├── Dom.js │ │ ├── Event.js │ │ ├── ListenerStack.js │ │ ├── Touch.js │ │ ├── publisher │ │ │ ├── ComponentDelegation.js │ │ │ ├── ComponentPaint.js │ │ │ ├── ComponentSize.js │ │ │ ├── Dom.js │ │ │ ├── ElementPaint.js │ │ │ ├── ElementSize.js │ │ │ ├── Publisher.js │ │ │ └── TouchGesture.js │ │ └── recognizer │ │ │ ├── DoubleTap.js │ │ │ ├── Drag.js │ │ │ ├── EdgeSwipe.js │ │ │ ├── HorizontalSwipe.js │ │ │ ├── LongPress.js │ │ │ ├── MultiTouch.js │ │ │ ├── Pinch.js │ │ │ ├── Recognizer.js │ │ │ ├── Rotate.js │ │ │ ├── SingleTouch.js │ │ │ ├── Swipe.js │ │ │ ├── Tap.js │ │ │ ├── Touch.js │ │ │ └── VerticalSwipe.js │ ├── field │ │ ├── Checkbox.js │ │ ├── DatePicker.js │ │ ├── DatePickerNative.js │ │ ├── Email.js │ │ ├── Field.js │ │ ├── File.js │ │ ├── FileInput.js │ │ ├── Hidden.js │ │ ├── Input.js │ │ ├── Number.js │ │ ├── Password.js │ │ ├── Radio.js │ │ ├── Search.js │ │ ├── Select.js │ │ ├── Slider.js │ │ ├── Spinner.js │ │ ├── Text.js │ │ ├── TextArea.js │ │ ├── TextAreaInput.js │ │ ├── Toggle.js │ │ └── Url.js │ ├── form │ │ ├── FieldSet.js │ │ └── Panel.js │ ├── fx │ │ ├── Animation.js │ │ ├── Easing.js │ │ ├── Runner.js │ │ ├── State.js │ │ ├── animation │ │ │ ├── Abstract.js │ │ │ ├── Cube.js │ │ │ ├── Fade.js │ │ │ ├── FadeOut.js │ │ │ ├── Flip.js │ │ │ ├── Pop.js │ │ │ ├── PopOut.js │ │ │ ├── Slide.js │ │ │ ├── SlideOut.js │ │ │ ├── Wipe.js │ │ │ └── WipeOut.js │ │ ├── easing │ │ │ ├── Abstract.js │ │ │ ├── Bounce.js │ │ │ ├── BoundMomentum.js │ │ │ ├── EaseIn.js │ │ │ ├── EaseOut.js │ │ │ ├── Linear.js │ │ │ └── Momentum.js │ │ ├── layout │ │ │ ├── Card.js │ │ │ └── card │ │ │ │ ├── Abstract.js │ │ │ │ ├── Cover.js │ │ │ │ ├── Cube.js │ │ │ │ ├── Fade.js │ │ │ │ ├── Flip.js │ │ │ │ ├── Pop.js │ │ │ │ ├── Reveal.js │ │ │ │ ├── Scroll.js │ │ │ │ ├── ScrollCover.js │ │ │ │ ├── ScrollReveal.js │ │ │ │ ├── Slide.js │ │ │ │ └── Style.js │ │ └── runner │ │ │ ├── Css.js │ │ │ ├── CssAnimation.js │ │ │ └── CssTransition.js │ ├── layout │ │ ├── Abstract.js │ │ ├── Box.js │ │ ├── Card.js │ │ ├── Default.js │ │ ├── Fit.js │ │ ├── FlexBox.js │ │ ├── Float.js │ │ ├── HBox.js │ │ ├── VBox.js │ │ └── wrapper │ │ │ ├── BoxDock.js │ │ │ ├── Dock.js │ │ │ └── Inner.js │ ├── locale │ │ └── ext-lang-en.js │ ├── log │ │ ├── Base.js │ │ ├── Logger.js │ │ ├── filter │ │ │ ├── Filter.js │ │ │ └── Priority.js │ │ ├── formatter │ │ │ ├── Default.js │ │ │ ├── Formatter.js │ │ │ └── Identity.js │ │ └── writer │ │ │ ├── Console.js │ │ │ ├── DocumentTitle.js │ │ │ ├── Remote.js │ │ │ └── Writer.js │ ├── mixin │ │ ├── Bindable.js │ │ ├── Filterable.js │ │ ├── Identifiable.js │ │ ├── Mixin.js │ │ ├── Observable.js │ │ ├── Progressable.js │ │ ├── Selectable.js │ │ ├── Sortable.js │ │ ├── Templatable.js │ │ └── Traversable.js │ ├── navigation │ │ ├── Bar.js │ │ └── View.js │ ├── picker │ │ ├── Date.js │ │ ├── Picker.js │ │ └── Slot.js │ ├── platform │ │ └── src │ │ │ └── data │ │ │ ├── proxies │ │ │ ├── SyncProxy.js │ │ │ └── SyncStorageProxy.js │ │ │ ├── stores │ │ │ └── SyncStore.js │ │ │ └── sync │ │ │ ├── Array.js │ │ │ ├── CS.js │ │ │ ├── CSGenerator.js │ │ │ ├── CSV.js │ │ │ ├── Clock.js │ │ │ ├── Config.js │ │ │ ├── DatabaseDefinition.js │ │ │ ├── Protocol.js │ │ │ ├── SyncModel.js │ │ │ ├── UUIDGenerator.js │ │ │ ├── Updates.js │ │ │ └── Utilities.js │ ├── plugin │ │ ├── BufferedList.js │ │ ├── ListPaging.js │ │ ├── PullRefresh.js │ │ └── SortableList.js │ ├── scroll │ │ ├── Indicator.js │ │ ├── Scroller.js │ │ ├── View.js │ │ └── indicator │ │ │ ├── Abstract.js │ │ │ ├── CssTransform.js │ │ │ ├── Rounded.js │ │ │ └── ScrollPosition.js │ ├── slider │ │ ├── Slider.js │ │ ├── Thumb.js │ │ └── Toggle.js │ ├── tab │ │ ├── Bar.js │ │ ├── Panel.js │ │ └── Tab.js │ ├── table │ │ ├── Cell.js │ │ ├── Row.js │ │ └── Table.js │ ├── util │ │ ├── AbstractMixedCollection.js │ │ ├── Audio.js │ │ ├── BufferedCollection.js │ │ ├── Collection.js │ │ ├── DelayedTask.js │ │ ├── Draggable.js │ │ ├── Droppable.js │ │ ├── Filter.js │ │ ├── Format.js │ │ ├── Geolocation.js │ │ ├── Grouper.js │ │ ├── HashMap.js │ │ ├── Inflector.js │ │ ├── InputBlocker.js │ │ ├── LineSegment.js │ │ ├── MixedCollection.js │ │ ├── Offset.js │ │ ├── PaintMonitor.js │ │ ├── Point.js │ │ ├── PositionMap.js │ │ ├── Region.js │ │ ├── SizeMonitor.js │ │ ├── Sortable.js │ │ ├── Sorter.js │ │ ├── TapRepeater.js │ │ ├── Translatable.js │ │ ├── TranslatableGroup.js │ │ ├── TranslatableList.js │ │ ├── Wrapper.js │ │ ├── paintmonitor │ │ │ ├── Abstract.js │ │ │ ├── CssAnimation.js │ │ │ └── OverflowChange.js │ │ ├── sizemonitor │ │ │ ├── Abstract.js │ │ │ ├── Default.js │ │ │ ├── OverflowChange.js │ │ │ └── Scroll.js │ │ └── translatable │ │ │ ├── Abstract.js │ │ │ ├── CssPosition.js │ │ │ ├── CssTransform.js │ │ │ ├── Dom.js │ │ │ └── ScrollPosition.js │ ├── ux │ │ ├── ActionOverFlowMenuButton.js │ │ ├── ApplicationMenu.js │ │ ├── ContextMenu.js │ │ ├── Iframe.js │ │ ├── MenuButton.js │ │ ├── TabMenuButton.js │ │ ├── device │ │ │ ├── Analytics.js │ │ │ ├── Twitter.js │ │ │ ├── analytics │ │ │ │ ├── Abstract.js │ │ │ │ └── Cordova.js │ │ │ └── twitter │ │ │ │ ├── Abstract.js │ │ │ │ └── Cordova.js │ │ └── parse │ │ │ ├── Helper.js │ │ │ ├── Model.js │ │ │ ├── Proxy.js │ │ │ ├── Reader.js │ │ │ ├── Store.js │ │ │ └── association │ │ │ ├── Pointer.js │ │ │ └── Relation.js │ └── viewport │ │ ├── Android.js │ │ ├── Default.js │ │ ├── Ios.js │ │ ├── Viewport.js │ │ └── WindowsPhone.js └── version.txt └── version.txt /.sencha/app/cordova.defaults.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2012-2014. Sencha Inc. 3 | # 4 | 5 | # Legacy support here for old build workflow. 6 | cordova.platforms=${app.cordova.config.platforms} -------------------------------------------------------------------------------- /app/controller/Readme.md: -------------------------------------------------------------------------------- 1 | This folder contains the controllers 2 | -------------------------------------------------------------------------------- /app/form/Readme.md: -------------------------------------------------------------------------------- 1 | This folder contains the forms 2 | -------------------------------------------------------------------------------- /app/model/Readme.md: -------------------------------------------------------------------------------- 1 | This folder contains the models 2 | -------------------------------------------------------------------------------- /app/store/Readme.md: -------------------------------------------------------------------------------- 1 | This folder contains the stores 2 | -------------------------------------------------------------------------------- /app/view/Readme.md: -------------------------------------------------------------------------------- 1 | This folder contains the views 2 | -------------------------------------------------------------------------------- /cache.json: -------------------------------------------------------------------------------- 1 | 1405202400 -------------------------------------------------------------------------------- /cache/writetest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/cache/writetest.html -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/favicon.ico -------------------------------------------------------------------------------- /resources/epub/php-epub-meta/LICENSE_php-epub-meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/epub/php-epub-meta/LICENSE_php-epub-meta -------------------------------------------------------------------------------- /resources/icons/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/icons/Icon.png -------------------------------------------------------------------------------- /resources/icons/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/icons/Icon@2x.png -------------------------------------------------------------------------------- /resources/icons/Icon_Android36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/icons/Icon_Android36.png -------------------------------------------------------------------------------- /resources/icons/Icon_Android48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/icons/Icon_Android48.png -------------------------------------------------------------------------------- /resources/icons/Icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/icons/Icon~ipad.png -------------------------------------------------------------------------------- /resources/icons/Icon~ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/icons/Icon~ipad@2x.png -------------------------------------------------------------------------------- /resources/icons/iTunesArtwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/icons/iTunesArtwork.png -------------------------------------------------------------------------------- /resources/icons/icon-spot~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/icons/icon-spot~ipad.png -------------------------------------------------------------------------------- /resources/images/bg_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/bg_book.png -------------------------------------------------------------------------------- /resources/images/bg_bookr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/bg_bookr.png -------------------------------------------------------------------------------- /resources/images/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/bookmark.png -------------------------------------------------------------------------------- /resources/images/bookmarkgtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/bookmarkgtab.png -------------------------------------------------------------------------------- /resources/images/bookmarkgtabread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/bookmarkgtabread.png -------------------------------------------------------------------------------- /resources/images/bookmarkiphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/bookmarkiphone.png -------------------------------------------------------------------------------- /resources/images/bookmarkiphoneread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/bookmarkiphoneread.png -------------------------------------------------------------------------------- /resources/images/bookmarkread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/bookmarkread.png -------------------------------------------------------------------------------- /resources/images/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/books.png -------------------------------------------------------------------------------- /resources/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/empty.png -------------------------------------------------------------------------------- /resources/images/errorresize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/errorresize.jpg -------------------------------------------------------------------------------- /resources/images/no_image_available.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/no_image_available.jpg -------------------------------------------------------------------------------- /resources/images/no_login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/no_login.jpg -------------------------------------------------------------------------------- /resources/images/tuiles/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/tuiles/tile.png -------------------------------------------------------------------------------- /resources/images/tuiles/tile.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/tuiles/tile.psd -------------------------------------------------------------------------------- /resources/images/white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/images/white.jpg -------------------------------------------------------------------------------- /resources/jquery/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/ajax-loader.gif -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/action-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/action-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/action-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/action-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/alert-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/alert-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/alert-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/alert-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-d-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-d-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-d-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-d-l-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-d-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-d-l-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-d-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-d-r-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-d-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-d-r-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-d-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-d-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-l-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-l-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-r-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-r-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-u-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-u-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-u-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-u-l-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-u-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-u-l-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-u-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-u-r-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-u-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-u-r-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/arrow-u-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/arrow-u-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/audio-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/audio-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/audio-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/audio-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/back-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/back-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/back-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/back-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/bars-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/bars-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/bars-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/bars-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/bullets-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/bullets-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/bullets-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/bullets-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/calendar-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/calendar-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/calendar-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/calendar-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/camera-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/camera-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/camera-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/camera-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/carat-d-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/carat-d-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/carat-d-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/carat-d-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/carat-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/carat-l-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/carat-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/carat-l-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/carat-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/carat-r-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/carat-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/carat-r-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/carat-u-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/carat-u-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/carat-u-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/carat-u-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/check-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/check-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/check-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/check-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/clock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/clock-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/clock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/clock-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/cloud-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/cloud-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/cloud-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/cloud-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/comment-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/comment-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/comment-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/comment-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/delete-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/delete-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/delete-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/delete-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/edit-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/edit-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/edit-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/edit-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/eye-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/eye-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/eye-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/eye-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/forbidden-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/forbidden-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/forbidden-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/forbidden-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/forward-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/forward-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/forward-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/forward-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/gear-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/gear-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/gear-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/gear-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/grid-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/grid-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/grid-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/grid-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/heart-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/heart-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/heart-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/heart-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/home-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/home-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/home-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/home-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/info-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/info-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/info-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/info-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/location-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/location-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/location-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/location-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/lock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/lock-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/lock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/lock-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/mail-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/mail-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/mail-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/mail-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/minus-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/minus-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/minus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/minus-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/navigation-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/navigation-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/navigation-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/navigation-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/phone-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/phone-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/phone-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/phone-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/plus-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/plus-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/plus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/plus-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/power-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/power-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/power-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/power-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/recycle-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/recycle-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/recycle-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/recycle-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/refresh-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/refresh-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/refresh-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/refresh-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/search-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/search-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/search-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/search-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/shop-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/shop-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/shop-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/shop-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/star-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/star-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/star-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/star-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/tag-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/tag-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/tag-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/tag-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/user-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/user-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/user-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/user-white.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/video-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/video-black.png -------------------------------------------------------------------------------- /resources/jquery/images/icons-png/video-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/jquery/images/icons-png/video-white.png -------------------------------------------------------------------------------- /resources/loading/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/loading/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /resources/loading/Default-LandscapeLeft~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/loading/Default-LandscapeLeft~ipad.png -------------------------------------------------------------------------------- /resources/loading/Default-LandscapeRight~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/loading/Default-LandscapeRight~ipad.png -------------------------------------------------------------------------------- /resources/loading/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/loading/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /resources/loading/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/loading/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /resources/loading/Default-PortraitUpsideDown~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/loading/Default-PortraitUpsideDown~ipad.png -------------------------------------------------------------------------------- /resources/loading/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/loading/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /resources/loading/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/loading/Default.png -------------------------------------------------------------------------------- /resources/loading/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/loading/Default@2x.png -------------------------------------------------------------------------------- /resources/loading/Default~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/loading/Default~ipad.png -------------------------------------------------------------------------------- /resources/sass/compile.bat: -------------------------------------------------------------------------------- 1 | compass compile -------------------------------------------------------------------------------- /resources/sass/stylesheets/fonts/ios7/ios7.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/sass/stylesheets/fonts/ios7/ios7.eot -------------------------------------------------------------------------------- /resources/sass/stylesheets/fonts/ios7/ios7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/sass/stylesheets/fonts/ios7/ios7.ttf -------------------------------------------------------------------------------- /resources/sass/stylesheets/fonts/ios7/ios7.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/sass/stylesheets/fonts/ios7/ios7.woff -------------------------------------------------------------------------------- /resources/sass/stylesheets/fonts/pictos/pictos-web.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/sass/stylesheets/fonts/pictos/pictos-web.eot -------------------------------------------------------------------------------- /resources/sass/stylesheets/fonts/pictos/pictos-web.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/sass/stylesheets/fonts/pictos/pictos-web.ttf -------------------------------------------------------------------------------- /resources/sass/stylesheets/fonts/pictos/pictos-web.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/sass/stylesheets/fonts/pictos/pictos-web.woff -------------------------------------------------------------------------------- /resources/sass/stylesheets/fonts/tizen/TizenSansMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/sass/stylesheets/fonts/tizen/TizenSansMedium.ttf -------------------------------------------------------------------------------- /resources/sass/stylesheets/fonts/tizen/TizenSansRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/sass/stylesheets/fonts/tizen/TizenSansRegular.ttf -------------------------------------------------------------------------------- /resources/sass/stylesheets/fonts/tizen/tizen-icon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/sass/stylesheets/fonts/tizen/tizen-icon.eot -------------------------------------------------------------------------------- /resources/sass/stylesheets/fonts/tizen/tizen-icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/sass/stylesheets/fonts/tizen/tizen-icon.ttf -------------------------------------------------------------------------------- /resources/sass/stylesheets/fonts/tizen/tizen-icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/sass/stylesheets/fonts/tizen/tizen-icon.woff -------------------------------------------------------------------------------- /resources/startup/1496x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/startup/1496x2048.png -------------------------------------------------------------------------------- /resources/startup/1536x2008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/startup/1536x2008.png -------------------------------------------------------------------------------- /resources/startup/320x460.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/startup/320x460.jpg -------------------------------------------------------------------------------- /resources/startup/640x920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/startup/640x920.png -------------------------------------------------------------------------------- /resources/startup/748x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/startup/748x1024.png -------------------------------------------------------------------------------- /resources/startup/768x1004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/resources/startup/768x1004.png -------------------------------------------------------------------------------- /senchacomp.bat: -------------------------------------------------------------------------------- 1 | F:\Users\sallegym\bin\Sencha\Cmd\5.1.0.26\sencha app build production -------------------------------------------------------------------------------- /skin/galaxytab2_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/skin/galaxytab2_landscape.png -------------------------------------------------------------------------------- /skin/galaxytab2_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/skin/galaxytab2_portrait.png -------------------------------------------------------------------------------- /skin/gtabview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/skin/gtabview.jpg -------------------------------------------------------------------------------- /skin/ipad_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/skin/ipad_landscape.png -------------------------------------------------------------------------------- /skin/ipad_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/skin/ipad_portrait.png -------------------------------------------------------------------------------- /skin/ipadmini_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/skin/ipadmini_landscape.png -------------------------------------------------------------------------------- /skin/ipadmini_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/skin/ipadmini_portrait.png -------------------------------------------------------------------------------- /skin/ipadview1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/skin/ipadview1.jpg -------------------------------------------------------------------------------- /skin/ipadview2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/skin/ipadview2.jpg -------------------------------------------------------------------------------- /skin/iphone_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/skin/iphone_landscape.png -------------------------------------------------------------------------------- /skin/iphone_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/skin/iphone_portrait.png -------------------------------------------------------------------------------- /skin/iphoneview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/skin/iphoneview.jpg -------------------------------------------------------------------------------- /skin/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/skin/rotate.png -------------------------------------------------------------------------------- /thumb/writetest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/thumb/writetest.html -------------------------------------------------------------------------------- /touch/resources/images/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/images/icon1.png -------------------------------------------------------------------------------- /touch/resources/images/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/images/icon2.png -------------------------------------------------------------------------------- /touch/resources/images/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/images/icon3.png -------------------------------------------------------------------------------- /touch/resources/images/icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/images/icon4.png -------------------------------------------------------------------------------- /touch/resources/images/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/images/welcome.png -------------------------------------------------------------------------------- /touch/resources/sass/bb10.scss: -------------------------------------------------------------------------------- 1 | @import 'sencha-touch/bb10'; 2 | @import 'sencha-touch/bb10/all'; -------------------------------------------------------------------------------- /touch/resources/sass/cupertino-classic.scss: -------------------------------------------------------------------------------- 1 | @import 'sencha-touch/cupertino-classic'; 2 | @import 'sencha-touch/cupertino-classic/all'; -------------------------------------------------------------------------------- /touch/resources/sass/cupertino.scss: -------------------------------------------------------------------------------- 1 | @import 'sencha-touch/cupertino'; 2 | @import 'sencha-touch/cupertino/all'; -------------------------------------------------------------------------------- /touch/resources/sass/mountainview.scss: -------------------------------------------------------------------------------- 1 | @import 'sencha-touch/mountainview'; 2 | @import 'sencha-touch/mountainview/all'; -------------------------------------------------------------------------------- /touch/resources/sass/sencha-touch.scss: -------------------------------------------------------------------------------- 1 | @import 'sencha-touch/default'; 2 | @import 'sencha-touch/default/all'; -------------------------------------------------------------------------------- /touch/resources/sass/tizen.scss: -------------------------------------------------------------------------------- 1 | @import 'sencha-touch/tizen'; 2 | @import 'sencha-touch/tizen/all'; -------------------------------------------------------------------------------- /touch/resources/sass/wp.scss: -------------------------------------------------------------------------------- 1 | @import 'sencha-touch/windows'; 2 | @import 'sencha-touch/windows/all'; -------------------------------------------------------------------------------- /touch/resources/themes/fonts/ios7/ios7.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/fonts/ios7/ios7.eot -------------------------------------------------------------------------------- /touch/resources/themes/fonts/ios7/ios7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/fonts/ios7/ios7.ttf -------------------------------------------------------------------------------- /touch/resources/themes/fonts/ios7/ios7.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/fonts/ios7/ios7.woff -------------------------------------------------------------------------------- /touch/resources/themes/fonts/pictos/pictos-web.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/fonts/pictos/pictos-web.eot -------------------------------------------------------------------------------- /touch/resources/themes/fonts/pictos/pictos-web.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/fonts/pictos/pictos-web.ttf -------------------------------------------------------------------------------- /touch/resources/themes/fonts/pictos/pictos-web.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/fonts/pictos/pictos-web.woff -------------------------------------------------------------------------------- /touch/resources/themes/fonts/tizen/TizenSansMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/fonts/tizen/TizenSansMedium.ttf -------------------------------------------------------------------------------- /touch/resources/themes/fonts/tizen/TizenSansRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/fonts/tizen/TizenSansRegular.ttf -------------------------------------------------------------------------------- /touch/resources/themes/fonts/tizen/tizen-icon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/fonts/tizen/tizen-icon.eot -------------------------------------------------------------------------------- /touch/resources/themes/fonts/tizen/tizen-icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/fonts/tizen/tizen-icon.ttf -------------------------------------------------------------------------------- /touch/resources/themes/fonts/tizen/tizen-icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/fonts/tizen/tizen-icon.woff -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/check.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/clear_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/clear_icon.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/disclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/disclosure.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/disclosure2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/disclosure2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/dotgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/dotgrid.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_add.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_add_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_add_entry.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_add_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_add_favorite.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_add_folder.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_advanced.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_all.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_attach.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_bbm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_bbm.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_browse.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_browser.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_buy.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_camera.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_cancel.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_check_spelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_check_spelling.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_clear.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_clear_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_clear_list.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_code_inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_code_inspector.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_collapse.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_compose.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_connections.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_contacts.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_copy.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_copy_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_copy_link.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_copy_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_copy_password.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_cut.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_decrease.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_decrease.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_delete.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_delete_prior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_delete_prior.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_deselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_deselect.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_deselect_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_deselect_all.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_diagnostics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_diagnostics.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_disable.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_doctype_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_doctype_doc.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_doctype_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_doctype_music.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_doctype_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_doctype_pdf.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_doctype_ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_doctype_ppt.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_doctype_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_doctype_video.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_doctype_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_doctype_web.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_doctype_xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_doctype_xls.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_doctype_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_doctype_zip.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_done.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_download.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_edit.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_edit_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_edit_favorite.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_edit_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_edit_list.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_edit_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_edit_profile.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_email.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_enable.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_entry.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_expand.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_favorite.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_feedback.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_forward.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_forward_as_bbm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_forward_as_bbm.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_help.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_history.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_home.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_increase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_increase.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_info.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_location.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_lock.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_map.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_microphone.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_move.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_nav_to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_nav_to.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_next.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_notes.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_notification.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_open.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_open_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_open_link.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_overflow_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_overflow_tab.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_paste.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_pause.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_phone.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_play.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_previous.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_properties.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_reload.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_rename.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_reply.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_reply_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_reply_all.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_rotate.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_save.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_save_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_save_as.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_scan_barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_scan_barcode.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_search.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_select.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_select_all.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_select_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_select_more.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_select_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_select_text.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_set_as_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_set_as_default.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_settings.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_share.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_show_dialpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_show_dialpad.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_show_vkb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_show_vkb.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_sort.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_sort_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_sort_filter.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_speaker.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_speaker_mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_speaker_mute.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_stop.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_textmessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_textmessage.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_to_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_to_bottom.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_to_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_to_top.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_view_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_view_details.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_view_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_view_grid.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_view_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_view_image.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_view_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_view_list.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_view_post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_view_post.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_zoom_in.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/icons/ic_zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/icons/ic_zoom_out.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/loading.gif -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/pullarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/pullarrow.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/reveal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/reveal_icon.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/select_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/select_mask.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/tab-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/tab-active.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/tab.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/tip2_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/tip2_left.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/tip2_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/tip2_right.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/tip_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/tip_bottom.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/tip_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/tip_left.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/tip_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/tip_right.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/tip_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/tip_top.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/togglebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/togglebg.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/togglemask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/togglemask.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/togglethumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/togglethumb.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/togglethumbbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/togglethumbbg.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/togglethumbmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/togglethumbmask.png -------------------------------------------------------------------------------- /touch/resources/themes/images/bb10/trackmask_outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/bb10/trackmask_outer.png -------------------------------------------------------------------------------- /touch/resources/themes/images/cupertino-flat/clear_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/cupertino-flat/clear_icon.png -------------------------------------------------------------------------------- /touch/resources/themes/images/cupertino/clear_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/cupertino/clear_icon.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/check.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/clear_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/clear_icon.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/disclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/disclosure.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/disclosure2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/disclosure2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/dotgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/dotgrid.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/loading.gif -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/action.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/add.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/add1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/add1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/add_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/add_black.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/address_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/address_book.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/arrow_down.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/arrow_left.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/arrow_right.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/arrow_up.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/at.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/atom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/atom.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/attachment.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/attachment2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/attachment2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/attachment3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/attachment3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/back.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/backspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/backspace.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/battery_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/battery_full.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/battery_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/battery_low.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/battery_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/battery_power.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/blank.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/bolt.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/bolt_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/bolt_side.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/bookmark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/bookmark1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/bookmark2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/bookmark2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/bookmarks.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/briefcase1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/briefcase1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/briefcase2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/briefcase2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/brightness1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/brightness1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/brightness2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/brightness2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/broadcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/broadcast.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/bug.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/bulb.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/bullseye1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/bullseye1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/bullseye2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/bullseye2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/calendar.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/calendar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/calendar2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/calendar_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/calendar_add.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/card1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/card1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/card2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/card2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/chart1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/chart1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/chart2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/chart2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/chart3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/chart3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/chat.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/chat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/chat1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/chat2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/chat2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/chat3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/chat3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/chat4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/chat4.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/chat_black1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/chat_black1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/chat_black2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/chat_black2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/check1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/check1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/check2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/check2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/check_black1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/check_black1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/check_black2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/check_black2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/check_dotted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/check_dotted.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/circle.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/circle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/circle2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/circle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/circle3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/circle4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/circle4.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/clash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/clash.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/cloud.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/cloud_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/cloud_black.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/cloud_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/cloud_bolt.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/code1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/code1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/code2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/code2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/code3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/code3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/compass1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/compass1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/compass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/compass2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/compass3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/compass3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/compose.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/compose1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/compose1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/compose2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/compose2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/compose3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/compose3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/compose_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/compose_black.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/contract.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/cube.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/data.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/delete.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/delete1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/delete1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/delete_black1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/delete_black1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/delete_black2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/delete_black2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/doc.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/doc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/doc2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/doc_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/doc_black.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/doc_compose1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/doc_compose1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/doc_compose2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/doc_compose2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/doc_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/doc_delete.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/doc_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/doc_down.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/doc_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/doc_drawer.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/doc_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/doc_list.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/doc_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/doc_new.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/doc_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/doc_send.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/doc_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/doc_up.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/docs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/docs1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/docs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/docs2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/docs_black1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/docs_black1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/docs_black2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/docs_black2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/download.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/download1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/download1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/download2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/download2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/eject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/eject.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/empty1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/empty1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/empty2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/empty2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/equalizer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/equalizer1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/equalizer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/equalizer2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/expand.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/favorites.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/favorites1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/favorites1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/fforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/fforward.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/find.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/flag.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/flickr2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/flickr2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/folder.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/folder_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/folder_add.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/folder_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/folder_black.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/folder_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/folder_delete.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/folder_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/folder_lock.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/folder_open2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/folder_open2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/font.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/forbidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/forbidden.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/globe1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/globe1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/globe2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/globe2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/headphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/headphones.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/heart.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/help.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/help_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/help_black.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/home.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/home2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/hot.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/inbox1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/inbox1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/inbox2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/inbox2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/inbox3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/inbox3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/infinite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/infinite.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/infinite2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/infinite2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/info.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/info2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/info2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/info_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/info_plain.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/json.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/lab.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/layout.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/link1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/link1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/link2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/link2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/link_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/link_black.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/list.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/locate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/locate.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/locate1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/locate1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/locate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/locate2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/locate3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/locate3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/locate4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/locate4.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/lock_open.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/look.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/look.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/loop.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/loop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/loop2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/magic.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/mail.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/mail1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/mail1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/mail2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/mail2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/mail3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/mail3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/mail4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/mail4.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/mail5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/mail5.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/maps.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/mic.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/minus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/minus1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/minus2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/minus2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/monitor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/monitor1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/monitor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/monitor2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/monitor3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/monitor3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/monitor4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/monitor4.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/more.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/more2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/more2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/mouse.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/move.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/music1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/music1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/music2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/music2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/nodes1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/nodes1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/nodes2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/nodes2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/note1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/note1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/note2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/note2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/note3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/note3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/note_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/note_black.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/nuclear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/nuclear.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/organize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/organize.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/outbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/outbox.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/pause.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/phone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/phone1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/phone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/phone2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/photo1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/photo2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/photo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/photo3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/photos1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/photos1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/photos2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/photos2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/photos4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/photos4.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/pictos-web.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/pictos-web.eot -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/pictos-web.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/pictos-web.ttf -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/piechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/piechart.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/play1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/play1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/play2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/play2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/podcast.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/power_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/power_on.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/print.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/print2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/print2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/quote1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/quote1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/quote2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/quote2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/refresh.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/refresh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/refresh1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/refresh2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/refresh2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/refresh3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/refresh3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/refresh5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/refresh5.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/reply.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/replytoall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/replytoall.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/resize.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/rewind.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/right.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/right2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/right2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/rss.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/rss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/rss2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/rss_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/rss_black.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/rss_black1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/rss_black1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/rss_black2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/rss_black2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/screens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/screens.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/search.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/search1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/search1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/search2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/search2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/server.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/servers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/servers.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/settings.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/settings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/settings1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/settings10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/settings10.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/settings11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/settings11.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/settings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/settings3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/settings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/settings4.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/settings5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/settings5.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/settings6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/settings6.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/settings7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/settings7.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/settings8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/settings8.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/settings9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/settings9.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/share.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/shield1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/shield1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/shield2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/shield2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/shop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/shop1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/shop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/shop2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/shuffle.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/sign_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/sign_cross.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/sign_split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/sign_split.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/sign_uturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/sign_uturn.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/spaces1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/spaces1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/spaces2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/spaces2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/star.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/stop.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/stop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/stop1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/stop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/stop2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/sync.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/tag.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/tag_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/tag_black.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/tags.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/team.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/team1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/team1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/time.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/trash.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/trash2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/trash2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/tree.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/tv.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/tweak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/tweak.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/twitter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/twitter1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/twitter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/twitter2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/up1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/up1.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/up2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/up2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/up_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/up_black.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/upload2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/upload2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/user.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/user3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/user3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/user_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/user_add.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/user_fave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/user_fave.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/user_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/user_list.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/user_list2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/user_list2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/user_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/user_send.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/video.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/volume.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/volume_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/volume_up.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/wifi.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/wifi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/wifi2.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/wifi3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/wifi3.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/wifi4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/wifi4.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pictos/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pictos/window.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/pullarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/pullarrow.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/select_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/select_mask.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/tip2_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/tip2_left.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/tip2_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/tip2_right.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/tip_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/tip_bottom.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/tip_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/tip_left.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/tip_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/tip_right.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/tip_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/tip_top.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/togglebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/togglebg.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/togglemask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/togglemask.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/togglethumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/togglethumb.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/togglethumbbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/togglethumbbg.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/togglethumbmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/togglethumbmask.png -------------------------------------------------------------------------------- /touch/resources/themes/images/default/trackmask_outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/default/trackmask_outer.png -------------------------------------------------------------------------------- /touch/resources/themes/images/windows-phone/dark/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/windows-phone/dark/check.png -------------------------------------------------------------------------------- /touch/resources/themes/images/windows-phone/light/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/resources/themes/images/windows-phone/light/check.png -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/_bb10.scss: -------------------------------------------------------------------------------- 1 | @import 'bb10/var/Class'; 2 | 3 | @import 'base'; 4 | 5 | @import 'bb10/mixins/Class'; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/_tizen.scss: -------------------------------------------------------------------------------- 1 | @import 'tizen/base/var/all'; 2 | @import 'tizen/variations/dark/var/all'; 3 | @import 'tizen/variations/light/var/all'; 4 | @import 'base'; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/base/_all.scss: -------------------------------------------------------------------------------- 1 | @import "src/all"; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/base/src/_Menu.scss: -------------------------------------------------------------------------------- 1 | .x-menu { 2 | background: #eee; 3 | } -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/base/src/_Sheet.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * @class Ext.Sheet 3 | */ 4 | 5 | .x-sheet, 6 | .x-sheet-action { 7 | height: auto; 8 | } -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/bb10/_all.scss: -------------------------------------------------------------------------------- 1 | @import "src/all"; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/bb10/src/_Panel.scss: -------------------------------------------------------------------------------- 1 | //$panel-border-radius: .3em; 2 | 3 | .x-panel { 4 | background: #fff; 5 | } 6 | -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/_all.scss: -------------------------------------------------------------------------------- 1 | @import "src/all"; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/_Class.scss: -------------------------------------------------------------------------------- 1 | .x-layout-card-item { 2 | background: #eee; 3 | } 4 | -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/carousel/_Indicator.scss: -------------------------------------------------------------------------------- 1 | .x-carousel-indicator span { 2 | @include border-radius(5px); 3 | background-color: #ddd; 4 | } -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/field/_TextArea.scss: -------------------------------------------------------------------------------- 1 | .x-field-textarea textarea { 2 | min-height: 7em; 3 | padding-top: .5em; 4 | } -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/cupertino/_all.scss: -------------------------------------------------------------------------------- 1 | @import "src/all"; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/cupertino/src/dataview/_IndexBar.scss: -------------------------------------------------------------------------------- 1 | .x-indexbar-vertical { 2 | color:$ios7-blue 3 | } -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/cupertino/src/field/_TextArea.scss: -------------------------------------------------------------------------------- 1 | .x-field-textarea textarea { 2 | min-height: 7em; 3 | padding-top: .5em; 4 | } -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/default/_all.scss: -------------------------------------------------------------------------------- 1 | @import "src/all"; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/mountainview/_all.scss: -------------------------------------------------------------------------------- 1 | @import "src/all"; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/mountainview/src/field/_TextArea.scss: -------------------------------------------------------------------------------- 1 | .x-field-textarea textarea { 2 | min-height: 7em; 3 | padding-top: .5em; 4 | } -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/carousel/_Indicator.scss: -------------------------------------------------------------------------------- 1 | .x-carousel-indicator { 2 | padding: 1em; 3 | } -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/field/_TextArea.scss: -------------------------------------------------------------------------------- 1 | .x-field-textarea textarea { 2 | min-height: 100px; 3 | padding-top: .5em; 4 | } -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/_Button.scss: -------------------------------------------------------------------------------- 1 | $button-border-radius: 3px !default; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/_Class.scss: -------------------------------------------------------------------------------- 1 | $include-default-icons: true !default; 2 | $small-font-size: 24px; 3 | $disabled-opacity: .6; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/_Panel.scss: -------------------------------------------------------------------------------- 1 | $anchor-height: 1em; 2 | $anchor-width: $anchor-height*2.33; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/dataview/_List.scss: -------------------------------------------------------------------------------- 1 | $list-disclosure-size: 26px; 2 | $list-disclosure-round-size: 1.5em; 3 | -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/field/_Radio.scss: -------------------------------------------------------------------------------- 1 | $radio-size: 32px; 2 | $inner-radio-size: $radio-size - 8; 3 | $inner-radio-offset: ($radio-size - $inner-radio-size)/2; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/slider/_Slider.scss: -------------------------------------------------------------------------------- 1 | $slider-thumb-size: 1.5em !default; 2 | $slider-size: .2em !default; 3 | $slider-spacing: .6em !default; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/slider/_Toggle.scss: -------------------------------------------------------------------------------- 1 | $form-toggle-thumb-width: 34px; 2 | $form-toggle-thumb-height: 29px; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/carousel/_Indicator.scss: -------------------------------------------------------------------------------- 1 | $dark-carousel-indicator-active-background-color: $winset-baby-blue; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/carousel/_Indicator.scss: -------------------------------------------------------------------------------- 1 | $light-carousel-indicator-active-background-color: $light-secondary-text-color; -------------------------------------------------------------------------------- /touch/resources/themes/stylesheets/sencha-touch/windows/_all.scss: -------------------------------------------------------------------------------- 1 | @import "src/all"; -------------------------------------------------------------------------------- /touch/resources/themes/templates/project/manifest.rb: -------------------------------------------------------------------------------- 1 | stylesheet 'sencha-touch.scss' -------------------------------------------------------------------------------- /touch/resources/themes/vendor/compass-recipes/Gemfile: -------------------------------------------------------------------------------- 1 | source :rubygems 2 | 3 | gem "bundle" 4 | gem "rake" 5 | gem "compass" 6 | gem "git" -------------------------------------------------------------------------------- /touch/resources/themes/vendor/compass-recipes/VERSION: -------------------------------------------------------------------------------- 1 | 0.3.0.alpha.1 -------------------------------------------------------------------------------- /touch/resources/themes/vendor/compass-recipes/stylesheets/recipes/_form.scss: -------------------------------------------------------------------------------- 1 | @import "recipes/form/element"; 2 | @import "recipes/form/skin"; -------------------------------------------------------------------------------- /touch/resources/themes/vendor/compass-recipes/stylesheets/recipes/_layout.scss: -------------------------------------------------------------------------------- 1 | @import "recipes/layout/vertical-align"; -------------------------------------------------------------------------------- /touch/resources/themes/vendor/compass-recipes/stylesheets/recipes/_shadow.scss: -------------------------------------------------------------------------------- 1 | @import "recipes/shadow/drop"; 2 | @import "recipes/shadow/top-edge"; -------------------------------------------------------------------------------- /touch/resources/themes/vendor/compass-recipes/stylesheets/recipes/form/_element.scss: -------------------------------------------------------------------------------- 1 | @import "recipes/form/element/inline"; -------------------------------------------------------------------------------- /touch/resources/themes/vendor/compass-recipes/stylesheets/recipes/form/_skin.scss: -------------------------------------------------------------------------------- 1 | @import "recipes/form/skin/natural"; -------------------------------------------------------------------------------- /touch/resources/themes/vendor/compass-recipes/stylesheets/recipes/ui/_helper.scss: -------------------------------------------------------------------------------- 1 | @import "recipes/ui/helper/arrow"; -------------------------------------------------------------------------------- /touch/resources/themes/vendor/compass-recipes/stylesheets/recipes/ui/_menu.scss: -------------------------------------------------------------------------------- 1 | @import "recipes/ui/menu/dropdown"; -------------------------------------------------------------------------------- /touch/resources/themes/vendor/compass-recipes/tests/recipes/form/element/inline/s.scss: -------------------------------------------------------------------------------- 1 | @import "tests"; 2 | 3 | @import "recipes/form/element/inline"; 4 | 5 | @include form-element-inline; 6 | -------------------------------------------------------------------------------- /touch/src/AbstractPlugin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @private 3 | * This is a compatibility class. 4 | */ 5 | Ext.define('Ext.AbstractPlugin', {}); -------------------------------------------------------------------------------- /touch/src/behavior/Droppable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/src/behavior/Droppable.js -------------------------------------------------------------------------------- /touch/src/behavior/Sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbdomo/MyReadings/6e41dae41eea4393f1b9a17dba672d15f0c6e999/touch/src/behavior/Sortable.js -------------------------------------------------------------------------------- /touch/src/device/accelerometer/Simulator.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @private 3 | */ 4 | Ext.define('Ext.device.accelerometer.Simulator', { 5 | extend: 'Ext.device.accelerometer.Abstract' 6 | }); 7 | -------------------------------------------------------------------------------- /touch/src/device/compass/Simulator.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @private 3 | */ 4 | Ext.define('Ext.device.compass.Simulator', { 5 | extend: 'Ext.device.compass.Abstract' 6 | }); 7 | -------------------------------------------------------------------------------- /touch/src/device/device/Simulator.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @private 3 | */ 4 | Ext.define('Ext.device.device.Simulator', { 5 | extend: 'Ext.device.device.Abstract' 6 | }); 7 | -------------------------------------------------------------------------------- /touch/src/device/filesystem/Simulator.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @private 3 | */ 4 | Ext.define('Ext.device.filesystem.Simulator', { 5 | extend: 'Ext.device.filesystem.HTML5' 6 | }); -------------------------------------------------------------------------------- /touch/src/device/globalization/Simulator.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @private 3 | */ 4 | Ext.define('Ext.device.globalization.Simulator', { 5 | extend: 'Ext.device.globalization.Abstract' 6 | }); 7 | -------------------------------------------------------------------------------- /touch/src/device/splashscreen/Abstract.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @private 3 | */ 4 | Ext.define('Ext.device.splashscreen.Abstract', { 5 | show: Ext.emptyFn, 6 | hide: Ext.emptyFn 7 | }); -------------------------------------------------------------------------------- /touch/src/device/splashscreen/Simulator.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @private 3 | */ 4 | Ext.define('Ext.device.splashscreen.Simulator', { 5 | extend: 'Ext.device.splashscreen.Abstract' 6 | }); 7 | -------------------------------------------------------------------------------- /touch/src/device/storage/Simulator.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @private 3 | */ 4 | Ext.define('Ext.device.storage.Simulator', { 5 | extend: 'Ext.device.storage.HTML5.HTML5' 6 | }); 7 | -------------------------------------------------------------------------------- /touch/version.txt: -------------------------------------------------------------------------------- 1 | 2.4.1 2 | --------------------------------------------------------------------------------