()
| 570 | }; |
| 571 | |
| 572 | var insertFloatSliderHere = function () { |
| 573 | var selection_start = cm.getCursor("from"); |
| 574 | cm.replaceRange(" 0.0 ", selection_start); // we pad with spaces, otherwise when we replace this text we blow away our widget as well |
| 575 | var selection_end = cm.getCursor("to"); |
| 576 | return insertFloatSlider(selection_start, selection_end); |
| 577 | }; |
| 578 | |
| 579 | var insertFloatSliderAtSelection = function () { |
| 580 | var selection_start = cm.getCursor("from"); |
no test coverage detected