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