Show more menu items when you click More

I added the necessary JavaScript to show more menu items when you click More.
This commit is contained in:
Evan Prodromou
2011-07-07 10:26:07 -04:00
parent 1c917ac28f
commit 1598050f54
4 changed files with 24 additions and 5 deletions

View File

@@ -1422,7 +1422,15 @@ var SN = { // StatusNet
SN.Init.NoticeFormSetup(form);
})
.find('.notice_data-text').focus();
}
},
showMoreMenuItems: function(menuid) {
$('#'+menuid+' .more_link').remove();
var selector = '#'+menuid+' .extended_menu';
var extended = $(selector);
extended.removeClass('extended_menu');
return void(0);
}
},
Init: {