This commit is contained in:
shijian 2023-08-26 03:23:05 +08:00
parent 9eebea05a9
commit 312eb48ea3
1 changed files with 5 additions and 0 deletions

View File

@ -43964,6 +43964,10 @@
var page=ui.create.div(''); var page=ui.create.div('');
var node=ui.create.div('.menubutton.large','获取扩展',start.firstChild,clickMode); var node=ui.create.div('.menubutton.large','获取扩展',start.firstChild,clickMode);
node.mode='get'; node.mode='get';
var _thisUpdate=false;
node.update=function(){
_thisUpdate=true;
};
node._initLink=function(){ node._initLink=function(){
node.link=page; node.link=page;
page.listen(function(){ page.listen(function(){
@ -44263,6 +44267,7 @@
}); });
} }
}; };
if(_thisUpdate) node.update();
}; };
}()); }());
var active=start.firstChild.querySelector('.active'); var active=start.firstChild.querySelector('.active');