You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
512 B
16 lines
512 B
6 months ago
|
$(function(){
|
||
|
var pathname = window.location.pathname;
|
||
|
console.log(pathname);
|
||
|
if(pathname.indexOf("users/profile/") >= 0 ) {
|
||
|
$("#id_profile").addClass("active");
|
||
|
}
|
||
|
if(pathname.indexOf("users/subscribe/") >= 0 ) {
|
||
|
$("#id_subscribe").addClass("active");
|
||
|
}
|
||
|
if(pathname.indexOf("users/change_password/") >= 0 ) {
|
||
|
$("#id_password").addClass("active");
|
||
|
}
|
||
|
if(pathname.indexOf("users/feedback/") >= 0 ) {
|
||
|
$("#id_feedback").addClass("active");
|
||
|
}
|
||
|
});
|