discourse/test/javascripts/helpers/set-textarea-selection.js

10 lines
204 B
JavaScript
Raw Normal View History

Ember.Test.registerHelper("setTextareaSelection", function(
app,
textarea,
selectionStart,
selectionEnd
) {
textarea.selectionStart = selectionStart;
textarea.selectionEnd = selectionEnd;
});