This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/test/javascripts/helpers/textarea-selection.js
2019-05-27 17:31:11 +02:00

16 lines
390 B
JavaScript

Ember.Test.registerHelper("setTextareaSelection", function(
app,
textarea,
selectionStart,
selectionEnd
) {
textarea.selectionStart = selectionStart;
textarea.selectionEnd = selectionEnd;
});
Ember.Test.registerHelper("getTextareaSelection", function(app, textarea) {
var start = textarea.selectionStart;
var end = textarea.selectionEnd;
return [start, end - start];
});