gitextract_066cprrn/ ├── .gitignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── dist/ │ ├── css/ │ │ └── mui.css │ └── js/ │ └── mui.js ├── examples/ │ ├── hello-mui/ │ │ ├── .project │ │ ├── css/ │ │ │ ├── app.css │ │ │ ├── feedback.css │ │ │ ├── icons-extra.css │ │ │ ├── mui.dtpicker.css │ │ │ ├── mui.imageviewer.css │ │ │ ├── mui.indexedlist.css │ │ │ ├── mui.listpicker.css │ │ │ ├── mui.picker.all.css │ │ │ ├── mui.picker.css │ │ │ └── mui.poppicker.css │ │ ├── examples/ │ │ │ ├── accordion.html │ │ │ ├── actionsheet-plus.html │ │ │ ├── actionsheet.html │ │ │ ├── ad.html │ │ │ ├── ajax.html │ │ │ ├── badges.html │ │ │ ├── best-practices/ │ │ │ │ └── list-to-detail/ │ │ │ │ ├── detail.html │ │ │ │ ├── list-to-detail.css │ │ │ │ └── listview.html │ │ │ ├── buttons-with-badges.html │ │ │ ├── buttons-with-block.html │ │ │ ├── buttons-with-icons.html │ │ │ ├── buttons-with-loading.html │ │ │ ├── buttons.html │ │ │ ├── card.html │ │ │ ├── checkbox.html │ │ │ ├── date.html │ │ │ ├── dialog.html │ │ │ ├── dtpicker.html │ │ │ ├── echarts.html │ │ │ ├── feedback.html │ │ │ ├── grid-default.html │ │ │ ├── grid-pagination.html │ │ │ ├── guide.html │ │ │ ├── icons-extra.html │ │ │ ├── icons.html │ │ │ ├── im-chat.html │ │ │ ├── imageviewer-native.html │ │ │ ├── imageviewer.html │ │ │ ├── indexed-list-select.html │ │ │ ├── indexed-list.html │ │ │ ├── info.html │ │ │ ├── input.html │ │ │ ├── lazyload-image.html │ │ │ ├── list-triplex-row.html │ │ │ ├── list-with-input.html │ │ │ ├── locker-dom.html │ │ │ ├── login.html │ │ │ ├── media-list.html │ │ │ ├── message-bottom.html │ │ │ ├── modals.html │ │ │ ├── nav-nativeObj.html │ │ │ ├── nav.html │ │ │ ├── nav_transparent.html │ │ │ ├── nav_transparent_native.html │ │ │ ├── numbox.html │ │ │ ├── offcanvas-drag-down.html │ │ │ ├── offcanvas-drag-left-plus-main.html │ │ │ ├── offcanvas-drag-left-plus-menu.html │ │ │ ├── offcanvas-drag-left.html │ │ │ ├── offcanvas-drag-right-plus-main.html │ │ │ ├── offcanvas-drag-right-plus-menu.html │ │ │ ├── offcanvas-drag-right.html │ │ │ ├── pagination.html │ │ │ ├── picker.html │ │ │ ├── popovers.html │ │ │ ├── progressbar.html │ │ │ ├── pullrefresh.html │ │ │ ├── pullrefresh_main.html │ │ │ ├── pullrefresh_sub.html │ │ │ ├── pullrefresh_with_tab.html │ │ │ ├── radio.html │ │ │ ├── range.html │ │ │ ├── setting.html │ │ │ ├── slider-default.html │ │ │ ├── slider-native.html │ │ │ ├── slider-table-default.html │ │ │ ├── slider-table-pagination.html │ │ │ ├── slider-with-title.html │ │ │ ├── switches.html │ │ │ ├── tab-top-subpage-1.html │ │ │ ├── tab-top-subpage-2.html │ │ │ ├── tab-top-subpage-3.html │ │ │ ├── tab-top-subpage-4.html │ │ │ ├── tab-top-subpage-5.html │ │ │ ├── tab-top-webview-main.html │ │ │ ├── tab-vertical-scroll.html │ │ │ ├── tab-webview-main.html │ │ │ ├── tab-webview-subpage-about.html │ │ │ ├── tab-webview-subpage-chat.html │ │ │ ├── tab-webview-subpage-contact.html │ │ │ ├── tab-webview-subpage-setting.html │ │ │ ├── tab-with-segmented-control-vertical.html │ │ │ ├── tab-with-segmented-control.html │ │ │ ├── tab-with-viewpagerindicator.html │ │ │ ├── tabbar-labels-only.html │ │ │ ├── tabbar-with-submenus.html │ │ │ ├── tabbar.html │ │ │ ├── tableviews-with-badges.html │ │ │ ├── tableviews-with-collapses.html │ │ │ ├── tableviews-with-swipe.html │ │ │ ├── tableviews.html │ │ │ └── typography.html │ │ ├── index-menu.html │ │ ├── index.html │ │ ├── js/ │ │ │ ├── 95516.js │ │ │ ├── arttmpl.js │ │ │ ├── beecloud.js │ │ │ ├── city.data-3.js │ │ │ ├── city.data.js │ │ │ ├── feedback.js │ │ │ ├── mui.dtpicker.js │ │ │ ├── mui.imageViewer.js │ │ │ ├── mui.indexedlist.js │ │ │ ├── mui.js │ │ │ ├── mui.lazyload.img.js │ │ │ ├── mui.lazyload.js │ │ │ ├── mui.listpicker.js │ │ │ ├── mui.locker.js │ │ │ ├── mui.picker.all.js │ │ │ ├── mui.picker.js │ │ │ ├── mui.poppicker.js │ │ │ ├── mui.previewimage.js │ │ │ ├── mui.pullToRefresh.js │ │ │ ├── mui.pullToRefresh.material.js │ │ │ ├── mui.view.js │ │ │ ├── mui.zoom.js │ │ │ ├── update.js │ │ │ └── webviewGroup.js │ │ ├── libs/ │ │ │ └── echarts-all.js │ │ └── manifest.json │ ├── login/ │ │ ├── .project │ │ ├── README.md │ │ ├── css/ │ │ │ ├── feedback-page.css │ │ │ └── style.css │ │ ├── forget_password.html │ │ ├── js/ │ │ │ ├── app.js │ │ │ ├── feedback-page.js │ │ │ ├── feedback.js │ │ │ ├── mui.enterfocus.js │ │ │ ├── mui.locker.js │ │ │ └── mui.view.js │ │ ├── libs/ │ │ │ └── easymob-webim-sdk/ │ │ │ ├── easemob.im-1.0.5.js │ │ │ ├── jquery-1.11.1.js │ │ │ ├── json2.js │ │ │ ├── quickstart.md │ │ │ └── strophe-custom-2.0.0.js │ │ ├── login.html │ │ ├── main.html │ │ ├── manifest.json │ │ ├── reg.html │ │ ├── setting.html │ │ └── unlock.html │ └── nativeTab/ │ ├── README.md │ ├── css/ │ │ └── mui.css │ ├── html/ │ │ ├── new-webview.html │ │ ├── tab-webview-subpage-chat.html │ │ └── tab-webview-subpage-contact.html │ ├── index.html │ ├── js/ │ │ ├── mui.js │ │ └── util.js │ ├── manifest.json │ └── unpackage/ │ ├── .confirmed_dependencies │ └── .dependencies ├── grunt/ │ └── mui-namespace-generator.js ├── js/ │ ├── actions.js │ ├── ajax.plugin.js │ ├── input.plugin.js │ ├── modals.js │ ├── mui.active.js │ ├── mui.ajax.5+.js │ ├── mui.ajax.js │ ├── mui.animation.js │ ├── mui.animationframe.js │ ├── mui.back.5+.js │ ├── mui.back.js │ ├── mui.button.js │ ├── mui.class.js │ ├── mui.class.scroll.js │ ├── mui.class.scroll.pullrefresh.js │ ├── mui.class.scroll.slider.js │ ├── mui.detect.5+.js │ ├── mui.detect.js │ ├── mui.dialog.alert.js │ ├── mui.dialog.confirm.js │ ├── mui.dialog.prompt.js │ ├── mui.dialog.toast.js │ ├── mui.event.js │ ├── mui.fixed.animation.js │ ├── mui.fixed.bind.js │ ├── mui.fixed.classlist.js │ ├── mui.fixed.fastclick.js │ ├── mui.fixed.js │ ├── mui.fixed.keyboard.js │ ├── mui.gestures.drag.js │ ├── mui.gestures.flick.js │ ├── mui.gestures.hold.js │ ├── mui.gestures.js │ ├── mui.gestures.longtap.js │ ├── mui.gestures.pinch.js │ ├── mui.gestures.swipe.js │ ├── mui.gestures.tap.js │ ├── mui.init.5+.js │ ├── mui.init.js │ ├── mui.init.pullrefresh.js │ ├── mui.js │ ├── mui.jsonp.js │ ├── mui.layout.js │ ├── mui.namespace.js │ ├── mui.number.js │ ├── mui.offcanvas.js │ ├── mui.popup.js │ ├── mui.progressbar.js │ ├── mui.pullrefresh.5+.js │ ├── mui.pullrefresh.js │ ├── mui.target.js │ ├── mui.transparent.js │ ├── popovers.js │ ├── segmented-controllers.js │ ├── sliders.js │ ├── switches.js │ └── tableviews.js ├── mui_snippets.rb ├── package.json ├── plugin/ │ ├── picker/ │ │ ├── css/ │ │ │ ├── mui.dtpicker.css │ │ │ ├── mui.picker.css │ │ │ └── mui.poppicker.css │ │ ├── dist/ │ │ │ ├── css/ │ │ │ │ └── mui.picker.all.css │ │ │ └── js/ │ │ │ └── mui.picker.all.js │ │ ├── gulpfile.js │ │ ├── js/ │ │ │ ├── mui.dtpicker.js │ │ │ ├── mui.picker.js │ │ │ └── mui.poppicker.js │ │ └── package.json │ └── share/ │ └── plusShare.js ├── sass/ │ ├── badges.scss │ ├── bars.scss │ ├── base.scss │ ├── buttons.scss │ ├── cards.scss │ ├── forms.scss │ ├── fullscreen.scss │ ├── grid.scss │ ├── hack.scss │ ├── icon.scss │ ├── iframe.scss │ ├── iscroll.scss │ ├── loadings.scss │ ├── mixins.scss │ ├── modals.scss │ ├── mui.scss │ ├── normalize.scss │ ├── number.scss │ ├── off-canvas.scss │ ├── os.scss │ ├── pagination.scss │ ├── popovers.scss │ ├── popup.scss │ ├── progressbar.scss │ ├── pullrefreshs.scss │ ├── push.scss │ ├── scroll.scss │ ├── segmented-controls.scss │ ├── slider-cell.scss │ ├── sliders.scss │ ├── switches.scss │ ├── table-views.scss │ ├── toast.scss │ ├── type.scss │ └── variables.scss └── template/ └── feedback/ ├── css/ │ └── feedback.css ├── feedback.html ├── js/ │ └── feedback.js └── readme.md