├── .gitignore ├── components └── scheduleDetail.ios.js ├── iOS ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ └── LaunchScreen.xib ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── apple-touch-icon-120x120-1.png │ │ ├── apple-touch-icon-120x120.png │ │ └── apple-touch-icon-180x180.png │ ├── about.imageset │ │ ├── Contents.json │ │ └── about.png │ ├── calendar.imageset │ │ ├── Contents.json │ │ └── calendar.png │ ├── family_photo.imageset │ │ ├── Contents.json │ │ └── family_photo.jpg │ ├── logo.imageset │ │ ├── Contents.json │ │ └── logo.png │ ├── logo_dark.imageset │ │ ├── Contents.json │ │ └── logo_dark.png │ ├── map.imageset │ │ ├── Contents.json │ │ └── map.png │ ├── speaker.imageset │ │ ├── Contents.json │ │ └── speaker.png │ └── tabnav_notification.imageset │ │ ├── Contents.json │ │ └── tabnav_notification@3x.png ├── Info.plist └── main.m ├── images ├── iOS Simulator Screen Shot 5 Apr, 2015 4.52.34 pm.png ├── iOS Simulator Screen Shot 5 Apr, 2015 4.52.41 pm.png ├── iOS Simulator Screen Shot 5 Apr, 2015 4.52.43 pm.png ├── iOS Simulator Screen Shot 5 Apr, 2015 4.52.45 pm.png ├── iOS Simulator Screen Shot 5 Apr, 2015 4.52.58 pm.png └── iOS Simulator Screen Shot 5 Apr, 2015 4.53.02 pm.png ├── index.ios.js ├── main.jsbundle ├── package.json ├── pages ├── about.ios.js ├── map.ios.js ├── schedule.ios.js └── speaker.ios.js ├── readme.md └── shenjs.xcodeproj ├── project.pbxproj ├── project.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── shenjs.xccheckout └── xcuserdata │ └── fraserxu.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── xcshareddata └── xcschemes │ └── shenjs.xcscheme └── xcuserdata └── fraserxu.xcuserdatad └── xcschemes └── xcschememanagement.plist /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /components/scheduleDetail.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/components/scheduleDetail.ios.js -------------------------------------------------------------------------------- /iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/AppDelegate.h -------------------------------------------------------------------------------- /iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/AppDelegate.m -------------------------------------------------------------------------------- /iOS/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon.appiconset/apple-touch-icon-120x120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/AppIcon.appiconset/apple-touch-icon-120x120-1.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon.appiconset/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/AppIcon.appiconset/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/AppIcon.appiconset/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/AppIcon.appiconset/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/about.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/about.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/about.imageset/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/about.imageset/about.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/calendar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/calendar.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/calendar.imageset/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/calendar.imageset/calendar.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/family_photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/family_photo.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/family_photo.imageset/family_photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/family_photo.imageset/family_photo.jpg -------------------------------------------------------------------------------- /iOS/Images.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/logo.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/logo.imageset/logo.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/logo_dark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/logo_dark.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/logo_dark.imageset/logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/logo_dark.imageset/logo_dark.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/map.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/map.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/map.imageset/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/map.imageset/map.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/speaker.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/speaker.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/speaker.imageset/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/speaker.imageset/speaker.png -------------------------------------------------------------------------------- /iOS/Images.xcassets/tabnav_notification.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/tabnav_notification.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Images.xcassets/tabnav_notification.imageset/tabnav_notification@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Images.xcassets/tabnav_notification.imageset/tabnav_notification@3x.png -------------------------------------------------------------------------------- /iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/Info.plist -------------------------------------------------------------------------------- /iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/iOS/main.m -------------------------------------------------------------------------------- /images/iOS Simulator Screen Shot 5 Apr, 2015 4.52.34 pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/images/iOS Simulator Screen Shot 5 Apr, 2015 4.52.34 pm.png -------------------------------------------------------------------------------- /images/iOS Simulator Screen Shot 5 Apr, 2015 4.52.41 pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/images/iOS Simulator Screen Shot 5 Apr, 2015 4.52.41 pm.png -------------------------------------------------------------------------------- /images/iOS Simulator Screen Shot 5 Apr, 2015 4.52.43 pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/images/iOS Simulator Screen Shot 5 Apr, 2015 4.52.43 pm.png -------------------------------------------------------------------------------- /images/iOS Simulator Screen Shot 5 Apr, 2015 4.52.45 pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/images/iOS Simulator Screen Shot 5 Apr, 2015 4.52.45 pm.png -------------------------------------------------------------------------------- /images/iOS Simulator Screen Shot 5 Apr, 2015 4.52.58 pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/images/iOS Simulator Screen Shot 5 Apr, 2015 4.52.58 pm.png -------------------------------------------------------------------------------- /images/iOS Simulator Screen Shot 5 Apr, 2015 4.53.02 pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/images/iOS Simulator Screen Shot 5 Apr, 2015 4.53.02 pm.png -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/index.ios.js -------------------------------------------------------------------------------- /main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/main.jsbundle -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/package.json -------------------------------------------------------------------------------- /pages/about.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/pages/about.ios.js -------------------------------------------------------------------------------- /pages/map.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/pages/map.ios.js -------------------------------------------------------------------------------- /pages/schedule.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/pages/schedule.ios.js -------------------------------------------------------------------------------- /pages/speaker.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/pages/speaker.ios.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/readme.md -------------------------------------------------------------------------------- /shenjs.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/shenjs.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /shenjs.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/shenjs.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /shenjs.xcodeproj/project.xcworkspace/xcshareddata/shenjs.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/shenjs.xcodeproj/project.xcworkspace/xcshareddata/shenjs.xccheckout -------------------------------------------------------------------------------- /shenjs.xcodeproj/project.xcworkspace/xcuserdata/fraserxu.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/shenjs.xcodeproj/project.xcworkspace/xcuserdata/fraserxu.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /shenjs.xcodeproj/xcshareddata/xcschemes/shenjs.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/shenjs.xcodeproj/xcshareddata/xcschemes/shenjs.xcscheme -------------------------------------------------------------------------------- /shenjs.xcodeproj/xcuserdata/fraserxu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraserxu/shenjs/HEAD/shenjs.xcodeproj/xcuserdata/fraserxu.xcuserdatad/xcschemes/xcschememanagement.plist --------------------------------------------------------------------------------