limitless.directive('footer', ['config',function (config) { return { restrict: 'E', templateUrl: config.baseUrl + 'app/components/footer.html', link:function($scope,el,attrs) { if (attrs["absolute"] !== undefined) { el.addClass('footer'); } } } }]);