diff options
| author | meow <woem> | 2022-05-21 13:35:41 +0300 |
|---|---|---|
| committer | meow <woem> | 2022-05-21 13:35:41 +0300 |
| commit | b72b917af239c46dbe3d4592fc8b215e63703459 (patch) | |
| tree | 7bdda9692af29e9e47172b6a1d66d8bd4266a517 /assets/js/playlist_widget.js | |
| parent | 319bbd2f8113a775990895fff952a0228fb8f9e1 (diff) | |
| download | invidious-b72b917af239c46dbe3d4592fc8b215e63703459.tar.gz invidious-b72b917af239c46dbe3d4592fc8b215e63703459.tar.bz2 invidious-b72b917af239c46dbe3d4592fc8b215e63703459.zip | |
handled invalid values in storage
partial rewrite notifications.js
innerText to textContent
fixed bug with clamping
Diffstat (limited to 'assets/js/playlist_widget.js')
| -rw-r--r-- | assets/js/playlist_widget.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/js/playlist_widget.js b/assets/js/playlist_widget.js index 8f8da6d5..c92592ac 100644 --- a/assets/js/playlist_widget.js +++ b/assets/js/playlist_widget.js @@ -12,7 +12,7 @@ function add_playlist_video(target) { helpers.xhr('POST', url, {payload: payload}, { on200: function (response) { - option.innerText = '✓' + option.innerText; + option.textContent = '✓' + option.textContent; } }); } |
