Emoji picker, Search and Themes updates
This commit is contained in:
@ -64,6 +64,16 @@ $query = http_build_query(array_filter(array(
|
||||
$('body').on('click', '.compose', function(e) {
|
||||
$('#postform').toggle();
|
||||
});
|
||||
|
||||
$('body').on('click', '.searchform', function(e) {
|
||||
$(this).prev().toggle();
|
||||
});
|
||||
|
||||
$('body').on('click', '.searchmobiletoggle', function(e) {
|
||||
$('#usermenu').off('hover');
|
||||
$('#usermenu').off('active');
|
||||
$('#searchmobile').toggle();
|
||||
});
|
||||
|
||||
$("body").on("keydown", "form", function (e) {
|
||||
if (e.ctrlKey && e.keyCode === 13) {
|
||||
@ -71,8 +81,8 @@ $query = http_build_query(array_filter(array(
|
||||
}
|
||||
});
|
||||
|
||||
$('.topicon').click(function(){
|
||||
$('.topicon').each(function(a){
|
||||
$('.tlicon').click(function(){
|
||||
$('.tlicon').each(function(a){
|
||||
$( this ).removeClass('tiselected')
|
||||
});
|
||||
$( this ).addClass('tiselected');
|
||||
|
Reference in New Issue
Block a user