Remove GBP-UI and all Dlux dependencies
[groupbasedpolicy.git] / groupbasedpolicy-ui / module / src / main / resources / gbp / common / gbp.service.js
diff --git a/groupbasedpolicy-ui/module/src/main/resources/gbp/common/gbp.service.js b/groupbasedpolicy-ui/module/src/main/resources/gbp/common/gbp.service.js
deleted file mode 100644 (file)
index 7eb65a5..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-define([], function () {
-    'use strict';
-
-    angular.module('app.gbp').service('RootGbpService', RootGbpService);
-
-    RootGbpService.$inject = [];
-
-    function RootGbpService() {
-        this.setMainClass = setMainClass;
-
-        /**
-         * Sets gbpUiGlobalWrapper to override padding on parent class
-         */
-        function setMainClass(){
-            if ($('.gbpUiWrapper').length) {
-                $('.gbpUiWrapper').closest('.col-xs-12').addClass('gbpUiGlobalWrapper');
-            }
-        }
-    }
-
-    return RootGbpService;
-});