10 lines
204 B
JavaScript
10 lines
204 B
JavaScript
Ember.Test.registerHelper("setTextareaSelection", function(
|
|
app,
|
|
textarea,
|
|
selectionStart,
|
|
selectionEnd
|
|
) {
|
|
textarea.selectionStart = selectionStart;
|
|
textarea.selectionEnd = selectionEnd;
|
|
});
|