Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 15747 |
anikendra |
1 |
$(document).ready(function() {
|
|
|
2 |
$(document).on('click','.browseproperties',function(){
|
|
|
3 |
$(this).siblings('.allproperties').toggleClass('hidden');
|
|
|
4 |
if($(this).children().last().children().hasClass('ion-ios-arrow-right')){
|
|
|
5 |
$(this).children().last().children().removeClass('ion-ios-arrow-right').addClass('ion-ios-arrow-down');
|
|
|
6 |
}else{
|
|
|
7 |
$(this).children().last().children().removeClass('ion-ios-arrow-down').addClass('ion-ios-arrow-right');
|
|
|
8 |
}
|
|
|
9 |
})
|
|
|
10 |
});
|