progressStep icon indicating copy to clipboard operation
progressStep copied to clipboard

Add tooltip in each step

Open yasmanycastillo opened this issue 10 years ago • 0 comments

Hello, I'm trying to add a tooltip text in each step but I haven't found a way.

This is my code:

//tooltip_state is a dict like {'state_name':'description'}
for (i in tooltip_state) {
    if (states[counter] == i){
        $('tspan').attr({title: i});
    }
 }

Is it possible to make this?

yasmanycastillo avatar Jul 28 '15 20:07 yasmanycastillo