app/soc/templates/soc/survey/edit.html
changeset 2575 e319fd52cbc4
parent 2572 1ad6d986be6d
child 2576 7a1138f8a0e2
equal deleted inserted replaced
2574:402e4a979e77 2575:e319fd52cbc4
    76     "<p>Add a {{ type_info|first }} question:<br/> {{ type_info|last }}" +
    76     "<p>Add a {{ type_info|first }} question:<br/> {{ type_info|last }}" +
    77     "</p></div><div class='tooltip-bottom'></div></div>");
    77     "</p></div><div class='tooltip-bottom'></div></div>");
    78     var tooltip_object=null;
    78     var tooltip_object=null;
    79     $('#{{ type_id }}').hover(function() {
    79     $('#{{ type_id }}').hover(function() {
    80       if (tooltip_object==null) {
    80       if (tooltip_object==null) {
    81         tooltip_object = $(tooltip).purr({usingTransparentPNG: true});
    81         tooltip_object = $(tooltip).purr({usingTransparentPNG: true,removeTimer: 10000});
    82       }
    82       }
    83     },
    83     },
    84     function() {
    84     function() {
    85       if (tooltip_object!==null) {
    85       if (tooltip_object!==null) {
    86         tooltip_object.remove();
    86         tooltip_object.remove();