From 0a2c673bb1a3c6d2630f241a8b69d53bf1da0e73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Thu, 18 Sep 2014 11:50:40 +0200 Subject: [PATCH] Move confirm module from base to common --- app/coffee/modules/{base => common}/confirm.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename app/coffee/modules/{base => common}/confirm.coffee (99%) diff --git a/app/coffee/modules/base/confirm.coffee b/app/coffee/modules/common/confirm.coffee similarity index 99% rename from app/coffee/modules/base/confirm.coffee rename to app/coffee/modules/common/confirm.coffee index e70184f1..933b45fc 100644 --- a/app/coffee/modules/base/confirm.coffee +++ b/app/coffee/modules/common/confirm.coffee @@ -198,5 +198,5 @@ class ConfirmService extends taiga.Service .addClass('inactive') -module = angular.module("taigaBase") +module = angular.module("taigaCommon") module.service("$tgConfirm", ConfirmService)