From 9e15302db3bc177e005de4525986c48c384f2b65 Mon Sep 17 00:00:00 2001 From: Andreww8xx8 Date: Fri, 13 Mar 2015 15:28:13 +0300 Subject: [PATCH] Ability to use different CSS for iOS and Android added --- ui/frame/frame-common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/frame/frame-common.ts b/ui/frame/frame-common.ts index eacee85aa..2a1856157 100644 --- a/ui/frame/frame-common.ts +++ b/ui/frame/frame-common.ts @@ -94,7 +94,7 @@ function pageFromBuilder(moduleNamePath: string, moduleName: string, moduleExpor page = element; // Possible CSS file path. - var cssFileName = moduleName + ".css"; + var cssFileName = resolvePlatformPath(moduleName, "css"); page.addCssFile(cssFileName); } }