WAH

Results 2 comments of WAH

https://github.com/timdown/rangyinputs/blob/master/rangyinputs-jquery-src.js#L161-L168 variable `val` need adding `val = val.replace(/\r/g,"")` https://github.com/timdown/rangyinputs/blob/master/rangyinputs-jquery-src.js#L56-L63 need changing to ``` function makeSelection(el, start, end) { var escapeIE = el.value.replace(/\r/g,""); // here console.log("I'm here?"); return { start: start,...

sorry, API is correct, I'm wrong. jQuery `val()` return the string with new-line symbol `\n` , even if it's `\r\n` it will help us turn into `\n`. At mean time,...