UNPKG

kibana-with-account

Version:

kibana-with-account is develop based kibana project

16 lines (13 loc) 294 B
module.exports = function DomLocationProvider($window) { return { reload: function (forceFetch) { $window.location.reload(forceFetch); }, get href() { return $window.location.href; }, set href(val) { return ($window.location.href = val); } }; };