ux(dashboard): remember details open state via storage-key
This commit is contained in:
@@ -92,7 +92,8 @@
|
||||
// 通用:折叠面板(collapsible)记忆展开状态(localStorage)
|
||||
// 用法:<details data-role="collapsible" data-storage-key="xxx">
|
||||
(function () {
|
||||
var nodes = document.querySelectorAll('details[data-role="collapsible"][data-storage-key]');
|
||||
// 兼容历史:旧实现要求 data-role="collapsible";现在只要存在 data-storage-key 就启用记忆。
|
||||
var nodes = document.querySelectorAll('details[data-storage-key], details[data-role="collapsible"][data-storage-key]');
|
||||
if (!nodes || nodes.length === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user