You can do it in JQuery..
$("a.shortcut-dashboard").on("click",function(){
if(!$("a.shortcut-dashboard").parent().hasClass("current"))
$("a.shortcut-dashboard").parent().addClass("current");
});
write this inside
$(document).ready(function () {
if this doesn't solve, reply to this.
Mark it if you find this helpful.