mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 01:24:34 +08:00
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;
|
||
|
});
|