gitlab-org--gitlab-foss/app/assets/javascripts/shortcuts_dashboard_navigat...

13 lines
278 B
JavaScript
Raw Normal View History

2017-03-30 17:31:59 +00:00
/**
* Helper function that finds the href of the fiven selector and updates the location.
*
* @param {String} selector
*/
export default (selector) => {
const link = document.querySelector(selector).getAttribute('href');
if (link) {
window.location = link;
}
};