mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update sync process
This commit is contained in:
parent
cc428aac1d
commit
504384e83d
109 changed files with 553 additions and 289 deletions
|
@ -218,6 +218,36 @@ this element's `bind-value` instead for imperative updates.
|
|||
return this.$.textarea;
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns textarea's selection start.
|
||||
* @type Number
|
||||
*/
|
||||
get selectionStart() {
|
||||
return this.$.textarea.selectionStart;
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns textarea's selection end.
|
||||
* @type Number
|
||||
*/
|
||||
get selectionEnd() {
|
||||
return this.$.textarea.selectionEnd;
|
||||
},
|
||||
|
||||
/**
|
||||
* Sets the textarea's selection start.
|
||||
*/
|
||||
set selectionStart(value) {
|
||||
this.$.textarea.selectionStart = value;
|
||||
},
|
||||
|
||||
/**
|
||||
* Sets the textarea's selection end.
|
||||
*/
|
||||
set selectionEnd(value) {
|
||||
this.$.textarea.selectionEnd = value;
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns true if `value` is valid. The validator provided in `validator`
|
||||
* will be used first, if it exists; otherwise, the `textarea`'s validity
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue