Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

$(document).ready(function() {
  $(document).on('click','.browseproperties',function(){
        $(this).siblings('.allproperties').toggleClass('hidden');
        if($(this).children().last().children().hasClass('ion-ios-arrow-right')){
                $(this).children().last().children().removeClass('ion-ios-arrow-right').addClass('ion-ios-arrow-down');
        }else{
                $(this).children().last().children().removeClass('ion-ios-arrow-down').addClass('ion-ios-arrow-right');
        }
  })
});