key-value-configuration.js 452 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8 9 10 11 12 13
systemConfigurationModule.directive('keyValueConfig', ['$log',
    function ($log) {
        return {
            restrict: 'E',
            templateUrl: '/app/admin/systemConfiguration/keyValueConfiguration/key-value-configuration.html' + '?_=' + Math.random(),
            replace: true,
            scope: {},
            controller: 'keyValueConfigController',
            link: function (scope, element,attr) {

            }
        }
    }]);