LocalStorage used for Explorer view
This commit is contained in:
@ -335,16 +335,17 @@ function userActionHandle(availableOptions)
|
||||
}
|
||||
|
||||
|
||||
|
||||
// change display: gallery/table
|
||||
$(".style-select.frame").click(function()
|
||||
{
|
||||
$("table").hide();
|
||||
$("#gallery").show();
|
||||
window.localStorage.setItem('explorer-view', 'gallery');
|
||||
});
|
||||
$(".style-select.list").click(function()
|
||||
{
|
||||
$("#gallery").hide();
|
||||
$("table").show();
|
||||
window.localStorage.setItem('explorer-view', 'table');
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user