diff --git a/plugins/blog/app/view/infinite.ts b/plugins/blog/app/view/infinite.ts index 4ad9c5c5cb..83fed67a9b 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 a473d9398d..f9beebac52 100644 --- a/plugins/blog/app/view/view.html +++ b/plugins/blog/app/view/view.html @@ -12,7 +12,7 @@
- +
@@ -52,9 +52,7 @@

{{blog.title}}

- - - +
{{blog.title}} >
- - -
- + +
diff --git a/plugins/blog/app/view/view.ts b/plugins/blog/app/view/view.ts index e4aecffed2..54a07096bf 100644 --- a/plugins/blog/app/view/view.ts +++ b/plugins/blog/app/view/view.ts @@ -8,6 +8,7 @@ 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'; @@ -32,7 +33,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, ShareModal, SocialIcons, InfiniteScroll, Hovercard, ConfirmModal ] + GoogleAds, RevContent, PDAds, ShareModal, SocialIcons, InfiniteScroll, Hovercard, ConfirmModal ] }) export class BlogView {