From c9736707cad38c5cafe01c90c363e91f93e74a18 Mon Sep 17 00:00:00 2001 From: ayyoob Date: Thu, 28 Jul 2016 15:37:16 +0530 Subject: [PATCH] fixed the formatting issues. --- .../src/repository/jaggeryapps/api-store/jagg.jag | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/distribution/src/repository/jaggeryapps/api-store/jagg.jag b/modules/distribution/src/repository/jaggeryapps/api-store/jagg.jag index 2ad77a05..c1068ed4 100644 --- a/modules/distribution/src/repository/jaggeryapps/api-store/jagg.jag +++ b/modules/distribution/src/repository/jaggeryapps/api-store/jagg.jag @@ -107,14 +107,14 @@ var jagg = jagg || (function () { var getThemeFile = function (path) { var p, index, theme = getUserTheme(); - if(theme.tenant_theme) { + if (theme.tenant_theme) { p = getTenantThemePath() + path; index = p.indexOf("?"); - if(new File(p.substring(0, index == -1 ? p.length : index)).isExists()) { + if (new File(p.substring(0, index == -1 ? p.length : index)).isExists()) { return p; } } - if(theme.subtheme) { + if (theme.subtheme) { p = getThemePath() + "subthemes/" + theme.subtheme + "/" + path; index = p.indexOf("?"); if(new File(p.substring(0, index == -1 ? p.length : index)).isExists()) {