2014-04-24 00:55:14 -04:00
|
|
|
/*jshint bitwise:true, curly:true, forin:false, noarg:true, noempty:true, nonew:true, undef:true, strict:false, browser:true, jquery:true */
|
|
|
|
|
2020-03-02 17:12:43 +00:00
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
2013-12-30 01:48:07 +00:00
|
|
|
$('#order_pool').change(function(){
|
|
|
|
var val = $("#order_pool option:selected").val();
|
2016-06-18 06:27:32 +01:00
|
|
|
Cookies.set("shm_ui-order-pool", val, {path: '/', expires: 365}); //FIXME: This won't play nice if COOKIE_PREFIX is not "shm_".
|
2013-12-30 01:48:07 +00:00
|
|
|
window.location.href = '';
|
|
|
|
});
|
|
|
|
});
|