UNPKG

kibana-123

Version:

Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic

16 lines (13 loc) 292 B
export default 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); } }; };