xzw 7 tháng trước cách đây
mục cha
commit
490842398c
1 tập tin đã thay đổi với 3 bổ sung2 xóa
  1. 3 2
      scene/public/static/js/Hot.js

+ 3 - 2
scene/public/static/js/Hot.js

@@ -1912,9 +1912,10 @@ window.initHot = function(model){
     
     Hot.createHotList = function() {
         //if(!window.DATA.showHotListSta)return
-        var docFragment = document.createDocumentFragment();
-        var hots = hotGroup.children.filter(hot=>hot.info.actionType.openHot);
+        var docFragment = document.createDocumentFragment(); 
+        var hots = hotGroup.children.filter(hot=>hot.info.actionType.openHot); 
         hots = hots.sort((a,b)=>{return a.order - b.order});
+        window.myHotList = hots //add
         hots.forEach((hot)=>{
             var li = document.createElement('li');
             var span = document.createElement('span');