This commit is contained in:
make
2025-04-21 17:47:12 +08:00
parent 24cef96a26
commit 7ef217c1b9
523 changed files with 0 additions and 93250 deletions

View File

@@ -1,46 +0,0 @@
(function() {
$('.i-left ul a').each(function(){
var self = $(this),link = self.attr('href');
if(location.pathname == link){
self.parent().addClass('on');
}
});
$('.i-title li').click(function(event) {
var index=$(this).index();
$('.i-title li').removeClass('on');
$(this).addClass('on');
$('.basicAccounts').addClass('hide');
$('.basicAccounts').eq(index).removeClass('hide');
});
var dialogMod = function(e, t) {
var a = null,
o = function() {
a && (clearTimeout(a), a = null)
};
$(e).hover(function() {
o(),
$(t).show()
},
function() {
o(),
a = setTimeout(function() {
$(t).hide()
},
50)
}),
$(t).hover(function() {
o(),
$(t).show()
},
function() {
o(),
a = setTimeout(function() {
$(t).hide()
},
50)
})
}
var accounts = $('li.accounts '), accountsDialog = $('li.accounts p');
dialogMod(accounts,accountsDialog);
})();