From d4c0d5d81b573f68a13412c522f3776ad68aa013 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Tue, 5 May 2015 13:37:20 +0200 Subject: [PATCH] changed position for checkbox label --- public/app/directives/tip.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/public/app/directives/tip.js b/public/app/directives/tip.js index edf57d47828..8553faad279 100644 --- a/public/app/directives/tip.js +++ b/public/app/directives/tip.js @@ -72,12 +72,7 @@ function (angular, kbn) { ' ng-checked="' + attrs.model + '">' + ' '; - if (attrs.position === "front") { - template = label + template; - } else { - template = template + label; - } - + template = label + template; elem.replaceWith($compile(angular.element(template))(scope)); } };