Timeline open by default in touch
In the touch interface is there any way to set the 'Timeline' views as open by default?
In the touch interface is there any way to set the 'Timeline' views as open by default?
Hi,
Do you wanna show like below:

This can be done using javascript/jquery.
e.g. I ran below javascript just to try document.ready function, works for me.
I used selector just to test not for actual development, you can be specific when use selectors.
$( document ).ready(function() {
console.log( "ready!" );
timeFunction();
function timeFunction() {
setTimeout(function(){
$("#coral-id-0").click();
$("#coral-id-1 > coral-selectlist-item:nth-child(2)").click();
}, 700);
}
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.