mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 16:13:24 +02:00
15 lines
297 B
JavaScript
15 lines
297 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()
|
|
}
|
|
}
|
|
}
|
|
}
|