├── app ├── redirect.html ├── styles │ ├── global │ │ ├── _phonegap.scss │ │ ├── _typo.scss │ │ ├── _shame.scss │ │ └── _variables.scss │ ├── sections │ │ ├── _footer.scss │ │ ├── _user.scss │ │ ├── _header.scss │ │ ├── _mashup.scss │ │ ├── _search.scss │ │ ├── _map.scss │ │ └── _postActions.scss │ ├── patterns │ │ ├── _forms.scss │ │ ├── _buttons.scss │ │ ├── _comment.scss │ │ └── _post.scss │ └── main.scss ├── views │ ├── load.html │ ├── partials │ │ ├── footer.html │ │ ├── newComment.html │ │ ├── header.html │ │ ├── adminDebug.html │ │ ├── hashtagSearch.html │ │ ├── postMeta.html │ │ ├── postComments.html │ │ ├── post.html │ │ └── newPostActions.html │ ├── map.html │ ├── timeline.html │ ├── hashtag.html │ ├── stream.html │ ├── singlePost.html │ ├── user.html │ ├── login.html │ └── report.html ├── config.js ├── images │ ├── bg.png │ ├── app.png │ ├── logo.png │ ├── app_bg.png │ ├── locate.png │ ├── spinner.gif │ ├── app_splash.png │ ├── locate@2x.png │ ├── spinner@2x.gif │ ├── header_logo.png │ ├── image_button.jpg │ ├── locate_touch.png │ ├── Default-568h@2x.png │ └── icons │ │ ├── brickwall.png │ │ ├── flickricn.png │ │ ├── googleicn.png │ │ ├── paypalicn.png │ │ ├── picasaicn.png │ │ ├── skypeicn.png │ │ ├── vimeoicn.png │ │ ├── dribbbleicn.png │ │ ├── evernoteicn.png │ │ ├── facebookicn.png │ │ ├── linkedinicn.png │ │ ├── tumblericn.png │ │ ├── twittericn.png │ │ ├── youtubeicn.png │ │ ├── instagramicn.png │ │ ├── pinteresticn.png │ │ └── stumbleuponicn.png ├── res │ ├── icon │ │ ├── ios │ │ │ ├── icon-57.png │ │ │ ├── icon-72.png │ │ │ ├── icon-57-2x.png │ │ │ └── icon-72-2x.png │ │ ├── android │ │ │ ├── icon-36-ldpi.png │ │ │ ├── icon-48-mdpi.png │ │ │ ├── icon-72-hdpi.png │ │ │ └── icon-96-xhdpi.png │ │ └── windows-phone │ │ │ ├── icon-48.png │ │ │ ├── icon-173-tile.png │ │ │ └── icon-62-tile.png │ └── screen │ │ ├── ios │ │ ├── screen-ipad-landscape.png │ │ ├── screen-ipad-portrait.png │ │ ├── screen-iphone-portrait.png │ │ ├── screen-ipad-landscape-2x.png │ │ ├── screen-ipad-portrait-2x.png │ │ ├── screen-iphone-landscape.png │ │ ├── screen-iphone-landscape-2x.png │ │ ├── screen-iphone-portrait-2x.png │ │ └── screen-iphone-portrait-568h-2x.png │ │ ├── android │ │ ├── screen-hdpi-portrait.png │ │ ├── screen-ldpi-portrait.png │ │ ├── screen-mdpi-portrait.png │ │ ├── screen-hdpi-landscape.png │ │ ├── screen-ldpi-landscape.png │ │ ├── screen-mdpi-landscape.png │ │ ├── screen-xhdpi-landscape.png │ │ └── screen-xhdpi-portrait.png │ │ └── windows-phone │ │ └── screen-portrait.jpg ├── vendor │ ├── mapbox │ │ ├── images │ │ │ ├── layers.png │ │ │ ├── layers-2x.png │ │ │ ├── marker-icon.png │ │ │ ├── icons-000000.png │ │ │ ├── icons-ffffff.png │ │ │ ├── marker-shadow.png │ │ │ ├── icons-000000@2x.png │ │ │ ├── icons-ffffff@2x.png │ │ │ ├── marker-icon-2x.png │ │ │ └── render.sh │ │ ├── MarkerCluster.css │ │ └── MarkerCluster.Default.css │ └── hellojs │ │ └── extended_hello.js ├── scripts │ ├── directives │ │ ├── ppnetFooter.js │ │ ├── ppnetHeader.js │ │ ├── post │ │ │ ├── ppnetPostComments.js │ │ │ ├── ppnetPostMeta.js │ │ │ ├── ppnetNewPostActions.js │ │ │ ├── ppnetNewCommentForm.js │ │ │ ├── ppnetPostFulltime.js │ │ │ ├── ppnetCropImage.js │ │ │ ├── ppnetPostFormatted.js │ │ │ ├── ppnetPostVideo.js │ │ │ └── ppnetPostImage.js │ │ ├── hashtag │ │ │ └── ppnetHashtagSearch.js │ │ ├── ppnetAdminDebug.js │ │ ├── ppnetMaxHeight.js │ │ └── mashup │ │ │ ├── ppnetMashupItem.js │ │ │ └── ppnetMashupImage.js │ ├── controller │ │ ├── logoutController.js │ │ ├── loadController.js │ │ ├── newCommentController.js │ │ ├── postActionsController.js │ │ ├── adminDebugController.js │ │ ├── newPostControllerBackup.js │ │ ├── postMetaController.js │ │ ├── userController.js │ │ ├── singlePostController.js │ │ ├── reportController.js │ │ ├── loginController.js │ │ ├── timelineController.js │ │ └── hashtagController.js │ ├── services │ │ ├── ppnetGlobalHelper.js │ │ ├── ppnetConfig.js │ │ ├── ppnetUser.js │ │ └── ppnetGeolocation.js │ └── app.js ├── config.json └── config.xml ├── www ├── redirect.html ├── views │ ├── load.html │ ├── partials │ │ ├── footer.html │ │ ├── newComment.html │ │ ├── header.html │ │ ├── adminDebug.html │ │ ├── hashtagSearch.html │ │ ├── postMeta.html │ │ ├── postComments.html │ │ ├── post.html │ │ └── newPostActions.html │ ├── map.html │ ├── timeline.html │ ├── hashtag.html │ ├── stream.html │ ├── singlePost.html │ ├── user.html │ ├── login.html │ └── report.html ├── config.js ├── images │ ├── bg.png │ ├── app.png │ ├── logo.png │ ├── app_bg.png │ ├── locate.png │ ├── spinner.gif │ ├── app_splash.png │ ├── locate@2x.png │ ├── spinner@2x.gif │ ├── header_logo.png │ ├── image_button.jpg │ ├── locate_touch.png │ ├── Default-568h@2x.png │ └── icons │ │ ├── brickwall.png │ │ ├── flickricn.png │ │ ├── googleicn.png │ │ ├── paypalicn.png │ │ ├── picasaicn.png │ │ ├── skypeicn.png │ │ ├── vimeoicn.png │ │ ├── dribbbleicn.png │ │ ├── evernoteicn.png │ │ ├── facebookicn.png │ │ ├── linkedinicn.png │ │ ├── tumblericn.png │ │ ├── twittericn.png │ │ ├── youtubeicn.png │ │ ├── instagramicn.png │ │ ├── pinteresticn.png │ │ └── stumbleuponicn.png ├── bower_components │ ├── zocial-less │ │ ├── bower.json │ │ ├── css │ │ │ ├── zocial-regular-webfont.eot │ │ │ ├── zocial-regular-webfont.ttf │ │ │ └── zocial-regular-webfont.woff │ │ └── README.md │ ├── font-awesome │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ └── src │ │ │ └── assets │ │ │ └── font-awesome │ │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ └── bootstrap-sass-official │ │ └── vendor │ │ └── assets │ │ └── fonts │ │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff ├── vendor │ ├── mapbox │ │ ├── images │ │ │ ├── layers.png │ │ │ ├── layers-2x.png │ │ │ ├── marker-icon.png │ │ │ ├── icons-000000.png │ │ │ ├── icons-ffffff.png │ │ │ ├── marker-shadow.png │ │ │ ├── icons-000000@2x.png │ │ │ ├── icons-ffffff@2x.png │ │ │ ├── marker-icon-2x.png │ │ │ └── render.sh │ │ ├── MarkerCluster.css │ │ └── MarkerCluster.Default.css │ └── hellojs │ │ └── extended_hello.js ├── scripts │ ├── directives │ │ ├── ppnetFooter.js │ │ ├── ppnetHeader.js │ │ ├── post │ │ │ ├── ppnetPostComments.js │ │ │ ├── ppnetPostMeta.js │ │ │ ├── ppnetNewPostActions.js │ │ │ ├── ppnetNewCommentForm.js │ │ │ ├── ppnetPostFulltime.js │ │ │ ├── ppnetCropImage.js │ │ │ ├── ppnetPostFormatted.js │ │ │ ├── ppnetPostVideo.js │ │ │ └── ppnetPostImage.js │ │ ├── hashtag │ │ │ └── ppnetHashtagSearch.js │ │ ├── ppnetAdminDebug.js │ │ ├── ppnetMaxHeight.js │ │ └── mashup │ │ │ ├── ppnetMashupItem.js │ │ │ └── ppnetMashupImage.js │ ├── controller │ │ ├── logoutController.js │ │ ├── loadController.js │ │ ├── newCommentController.js │ │ ├── postActionsController.js │ │ ├── adminDebugController.js │ │ ├── newPostControllerBackup.js │ │ ├── postMetaController.js │ │ ├── userController.js │ │ ├── singlePostController.js │ │ ├── reportController.js │ │ ├── loginController.js │ │ └── timelineController.js │ ├── services │ │ ├── ppnetGlobalHelper.js │ │ ├── ppnetConfig.js │ │ ├── ppnetUser.js │ │ └── ppnetGeolocation.js │ └── app.js ├── config.json ├── config.xml └── index.html ├── platforms └── .gitignore ├── .bowerrc ├── .tern-project ├── .gitmodules ├── plugins └── android.json_sample ├── .cordova └── config.json ├── .jshintrc ├── .gitattributes ├── package.json ├── config.rb ├── bower.json ├── LICENSE.md ├── gulpfile.js └── .gitignore /app/redirect.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/redirect.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/styles/global/_phonegap.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/load.html: -------------------------------------------------------------------------------- 1 | {{config}} -------------------------------------------------------------------------------- /www/views/load.html: -------------------------------------------------------------------------------- 1 | {{config}} -------------------------------------------------------------------------------- /platforms/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } -------------------------------------------------------------------------------- /.tern-project: -------------------------------------------------------------------------------- 1 | {"ide":{},"plugins":{"angular":"..\/"},"libs":["browser","ecma5"]} -------------------------------------------------------------------------------- /app/styles/global/_typo.scss: -------------------------------------------------------------------------------- 1 | h1{ 2 | color: $secondary; 3 | padding:0px; 4 | margin:0px; 5 | } -------------------------------------------------------------------------------- /app/views/partials/footer.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /www/views/partials/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | angular.module('PPnet') 4 | .config(function(ppSyncServiceProvider) {}); -------------------------------------------------------------------------------- /www/config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | angular.module('PPnet') 4 | .config(function(ppSyncServiceProvider) {}); -------------------------------------------------------------------------------- /app/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchris/FIcontent.Gaming.Enabler.SocialNetwork/master/app/images/bg.png -------------------------------------------------------------------------------- /www/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchris/FIcontent.Gaming.Enabler.SocialNetwork/master/www/images/bg.png -------------------------------------------------------------------------------- /app/images/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchris/FIcontent.Gaming.Enabler.SocialNetwork/master/app/images/app.png -------------------------------------------------------------------------------- /app/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchris/FIcontent.Gaming.Enabler.SocialNetwork/master/app/images/logo.png -------------------------------------------------------------------------------- /www/images/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchris/FIcontent.Gaming.Enabler.SocialNetwork/master/www/images/app.png -------------------------------------------------------------------------------- /www/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchris/FIcontent.Gaming.Enabler.SocialNetwork/master/www/images/logo.png -------------------------------------------------------------------------------- /app/images/app_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchris/FIcontent.Gaming.Enabler.SocialNetwork/master/app/images/app_bg.png -------------------------------------------------------------------------------- /app/images/locate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchris/FIcontent.Gaming.Enabler.SocialNetwork/master/app/images/locate.png -------------------------------------------------------------------------------- /app/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchris/FIcontent.Gaming.Enabler.SocialNetwork/master/app/images/spinner.gif -------------------------------------------------------------------------------- /app/views/map.html: -------------------------------------------------------------------------------- 1 |{{comment.doc.msg}}
19 |Your device is not supporting the image upload!
37 | 38 |Your device is not supporting the image upload!
37 | 38 |
{{comment.doc.msg}}
19 |25 |-
26 | Delete this Comment
27 |
28 |
29 | -
30 | Report this Post
31 |
32 |
33 |