From 345b2a8163f8f7ec103b3642e340785c171049a1 Mon Sep 17 00:00:00 2001 From: Rossen Hristov Date: Mon, 20 Jun 2016 12:18:36 +0300 Subject: [PATCH] Fix tslint errors --- tns-core-modules/ui/styling/background.android.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tns-core-modules/ui/styling/background.android.ts b/tns-core-modules/ui/styling/background.android.ts index 92d5dee98..1e8261ee2 100644 --- a/tns-core-modules/ui/styling/background.android.ts +++ b/tns-core-modules/ui/styling/background.android.ts @@ -6,6 +6,7 @@ import * as styleModule from "./style"; import * as buttonModule from "ui/button"; import { CacheLayerType } from "utils/utils"; import cssValue = require("css-value"); +import background = require("ui/styling/background"); var button: typeof buttonModule; var style: typeof styleModule; @@ -47,7 +48,7 @@ export module ad { var clipPathValue = v.style._getValue(style.clipPathProperty); - var backgroundValue = v.style._getValue(style.backgroundInternalProperty); + var backgroundValue = v.style._getValue(style.backgroundInternalProperty); var borderWidth = v.borderWidth; var bkg = nativeView.getBackground();