Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function(){
- list = document.querySelectorAll('ul.jeg_accountlink')
- list.forEach(function(value_parent,index_parent){
- value_parent.addEventListener('mouseover',function(){
- if (! this.classList.contains('init')) {
- this.classList.add('init')
- elem = this.querySelector('ul')
- elem.style.display='flex'
- elem.style.flexDirection='column'
- Array.from(elem.children).forEach(function(value,index){
- switch(value.querySelector('a').classList[0]){
- case 'account':
- value.style.order=2
- break
- case 'my_channel':
- value.style.order=1
- break
- case 'order':
- value.style.order=4
- break
- case 'custom_menu_1':
- value.style.order=3
- break
- case 'logout':
- value.style.order=5
- break
- }
- })
- }
- })
- })
- })()
Add Comment
Please, Sign In to add comment