1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 18:29:17 +02:00
OpenSTF/res/app/components/stf/common-ui/refresh-page/refresh-page-directive.js
2014-03-26 16:06:49 +09:00

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()
}
}
}