(item)
| 629 | |
| 630 | |
| 631 | function selectStop(item) { |
| 632 | if(cur_stop) cur_stop.setAttribute('stroke', '#000'); |
| 633 | item.setAttribute('stroke', 'blue'); |
| 634 | cur_stop = item; |
| 635 | cur_stop.parentNode.appendChild(cur_stop); |
| 636 | // stops = $('stop'); |
| 637 | // opac_select.val(cur_stop.attr('fill-opacity') || 1); |
| 638 | // root.append(delStop); |
| 639 | } |
| 640 | |
| 641 | var stop_offset; |
| 642 |