mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 00:33:30 +02:00
15 lines
295 B
JavaScript
15 lines
295 B
JavaScript
module.exports = function refreshPageDirective($window) {
|
|
return {
|
|
restrict: 'E',
|
|
replace: true,
|
|
scope: {
|
|
},
|
|
template: require('./refresh-page.jade'),
|
|
link: function(scope) {
|
|
scope.reloadWindow = function() {
|
|
$window.location.reload()
|
|
}
|
|
}
|
|
}
|
|
}
|