gitlab-org--gitlab-foss/app/assets/javascripts/experimental_flags.js

16 lines
307 B
JavaScript
Raw Normal View History

import $ from 'jquery';
2017-06-16 15:38:45 +00:00
import Cookies from 'js-cookie';
export default () => {
2018-10-24 19:17:03 +00:00
$('.js-experiment-feature-toggle').on('change', e => {
2017-06-16 15:38:45 +00:00
const el = e.target;
Cookies.set(el.name, el.value, {
expires: 365 * 10,
});
document.body.scrollTop = 0;
window.location.reload();
2017-06-16 15:38:45 +00:00
});
};