From cfda63d42b74ebab9a1b4ffba91b0e98eb91e636 Mon Sep 17 00:00:00 2001 From: Matt Donovan Date: Mon, 8 Jun 2015 17:16:12 -0500 Subject: [PATCH] changing != to !== --- ui/layouts/layout-base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/layouts/layout-base.ts b/ui/layouts/layout-base.ts index b5b6e77c1..f72613418 100644 --- a/ui/layouts/layout-base.ts +++ b/ui/layouts/layout-base.ts @@ -57,7 +57,7 @@ export class LayoutBase extends view.CustomLayoutView implements definition.Layo } public removeChildren(): void { - while (this.getChildrenCount() != 0) { + while (this.getChildrenCount() !== 0) { this.removeChild(this._subViews[this.getChildrenCount() - 1]); } }