Changelog
1.2.2 (2017-07-05)
Changelog
1.1.0 (2017-02-28)
setCanonical(canonicalURL: string)
function removed, replaced with setter function just called canonical(canonicalURL: string)
. To call this._ngmeta.canonical = 'https://www.google.com';
.setTitle(title: string)
function removed, replaced with setter function just called title(title: string)
. To call this._ngmeta.title = 'Google';
.
title()
will return current page's title. To call let title: string = this._ngmeta.title;
.setMeta(attribute: string, type: string, content: string)
function removed, replaced with createMeta(metaData: MetaData)
.setScrollEnabled(scroll: boolean)
removed, replaced with setter function just called scrollEnabled(scroll: boolean)
. To call this._ngmeta.scrollEnabled = true;
.
scrollEnabled()
will return if scroll to top is enabled. To call let scrollEnabled: boolean = this._ngmeta.scrollEnabled;
.