Salient - Responsive Multi-Purpose Theme

Mobile Drop Down , Change word not arrow as link

The mod would indeed take place in the init.js file – this section:

 $('#mobile-menu .container ul li:has(">ul") > a .sf-sub-indicator').click(function(){
    $(this).parent().parent().toggleClass('open');
    $(this).parent().parent().find('> ul').stop(true,true).slideToggle();
    return false;
});

would become:

 
$('#mobile-menu .container ul li:has(">ul") > a').click(function(){
    $(this).parent().toggleClass('open');
    $(this).parent().find('> ul').stop(true,true).slideToggle();
    return false;
});

Cheers :)