Add save-user_flag.js
This commit is contained in:
parent
2488e77e86
commit
23fc32f835
9
js/save-user_flag.js
Normal file
9
js/save-user_flag.js
Normal file
@ -0,0 +1,9 @@
|
||||
onready(function(){
|
||||
var uri = window.location.pathname.substr(1);
|
||||
var flagStorage = uri.slice(0, -1)+'_flag';
|
||||
var item = window.localStorage.getItem(flagStorage);
|
||||
$('select[name=user_flag]').val(item);
|
||||
$('select[name=user_flag]').change(function() {
|
||||
window.localStorage.setItem(flagStorage, $(this).val());
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue
Block a user