()
| 2012 | display.prevInput = " "; |
| 2013 | display.input.selectionStart = 1; display.input.selectionEnd = extval.length; |
| 2014 | var poll = function(){ |
| 2015 | if (display.prevInput == " " && display.input.selectionStart == 0) |
| 2016 | operation(cm, commands.selectAll)(cm); |
| 2017 | else if (i++ < 10) detectingSelectAll = setTimeout(poll, 500); |
| 2018 | else resetInput(cm); |
| 2019 | }; |
| 2020 | detectingSelectAll = setTimeout(poll, 200); |
| 2021 | } |
| 2022 | } |
nothing calls this directly
no test coverage detected