TabViewItem.title and SegmentedBarItem.title are now empty string by default.

This commit is contained in:
Rossen Hristov
2015-09-04 10:19:24 +03:00
parent 727caca960
commit 72c464bbe8
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ export module knownCollections {
}
export class SegmentedBarItem extends bindable.Bindable implements definition.SegmentedBarItem {
private _title: string;
private _title: string = "";
public _parent: SegmentedBar;
get title(): string {