diff --git a/plugins/blog/app/view/infinite.ts b/plugins/blog/app/view/infinite.ts index 83fed67a9b..4ad9c5c5cb 100644 --- a/plugins/blog/app/view/infinite.ts +++ b/plugins/blog/app/view/infinite.ts @@ -65,8 +65,8 @@ export class BlogViewInfinite { this.error = "Sorry, we couldn't load the blog"; } //hack: ios rerun on low memory - //this.cd.markForCheck(); - //this.applicationRef.tick(); + this.cd.markForCheck(); + this.applicationRef.tick(); this.inProgress = false; }) .catch((e) => { diff --git a/plugins/blog/app/view/view.html b/plugins/blog/app/view/view.html index f9beebac52..a473d9398d 100644 --- a/plugins/blog/app/view/view.html +++ b/plugins/blog/app/view/view.html @@ -12,7 +12,7 @@
- +
@@ -52,7 +52,9 @@

{{blog.title}}

- + + +
{{blog.title}} >
+ + +
- + -
diff --git a/plugins/blog/app/view/view.ts b/plugins/blog/app/view/view.ts index 54a07096bf..e4aecffed2 100644 --- a/plugins/blog/app/view/view.ts +++ b/plugins/blog/app/view/view.ts @@ -8,7 +8,6 @@ import { Material } from '../../../directives/material'; import { Hovercard } from '../../../directives/hovercard'; import { GoogleAds } from '../../../components/ads/google-ads'; import { RevContent } from '../../../components/ads/revcontent'; -import { PDAds } from '../../../components/ads/pd-ads'; import { MindsTitle } from '../../../services/ux/title'; import { MindsFatBanner } from '../../../components/banner'; import { Comments } from '../../../controllers/comments/comments'; @@ -33,7 +32,7 @@ import { AttachmentService } from '../../../services/attachment'; providers:[ MindsTitle, AttachmentService ], templateUrl: 'src/plugins/blog/view/view.html', directives: [ CORE_DIRECTIVES, ROUTER_DIRECTIVES, BUTTON_COMPONENTS, Material, Comments, MindsFatBanner, - GoogleAds, RevContent, PDAds, ShareModal, SocialIcons, InfiniteScroll, Hovercard, ConfirmModal ] + GoogleAds, RevContent, ShareModal, SocialIcons, InfiniteScroll, Hovercard, ConfirmModal ] }) export class BlogView {