module.exports = function refreshPageDirective($window) { return { restrict: 'E', replace: true, scope: { }, template: require('./refresh-page.pug'), link: function(scope) { scope.reloadWindow = function() { $window.location.reload() } } } }