From 4831b9f5d7d26e486e10f34f31698153814e1872 Mon Sep 17 00:00:00 2001 From: Juanfran Date: Thu, 26 Nov 2015 08:02:41 +0100 Subject: [PATCH] fix change theme --- app/modules/services/theme.service.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/services/theme.service.coffee b/app/modules/services/theme.service.coffee index 205a396d..ae4c7b17 100644 --- a/app/modules/services/theme.service.coffee +++ b/app/modules/services/theme.service.coffee @@ -28,7 +28,7 @@ class ThemeService extends taiga.Service = -> stylesheetEl = $("") $("head").append(stylesheetEl) - stylesheetEl.attr("href", "/styles/theme-#{themeName}.css") + stylesheetEl.attr("href", "/#{window._version}/styles/theme-#{themeName}.css") angular.module("taigaCommon").service("tgThemeService", ThemeService)