mirror of
https://github.com/openstf/stf
synced 2025-10-04 18:29:17 +02:00
12 lines
245 B
JavaScript
12 lines
245 B
JavaScript
module.exports = function refreshPageDirective() {
|
|
return {
|
|
restrict: 'E',
|
|
replace: true,
|
|
scope: {
|
|
},
|
|
template: require('./refresh-page.jade'),
|
|
link: function () {
|
|
// TODO: reload with $route.reload()
|
|
}
|
|
}
|
|
}
|