mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-25 06:41:36 -07:00
インデクサーを忘れていた
This commit is contained in:
parent
22a1b0c8f0
commit
2c68f95ff3
2 changed files with 2 additions and 2 deletions
|
@ -186,7 +186,7 @@ export default Vue.extend({
|
|||
this.$nextTick(() => this.watch());
|
||||
|
||||
const hashtags = [...document.getElementsByClassName('hashtag')];
|
||||
const hashtagsContainer = hashtags.parentElement;
|
||||
const hashtagsContainer = hashtags[0].parentElement;
|
||||
let offsetX = 0
|
||||
const update = () => {
|
||||
if (hashtags[0].getBoundingClientRect().right <= hashtagsContainer.getBoundingClientRect().left) {
|
||||
|
|
|
@ -167,7 +167,7 @@ export default Vue.extend({
|
|||
});
|
||||
|
||||
const hashtags = [...document.getElementsByClassName('hashtag')];
|
||||
const hashtagsContainer = hashtags.parentElement;
|
||||
const hashtagsContainer = hashtags[0].parentElement;
|
||||
let offsetX = 0
|
||||
const update = () => {
|
||||
if (hashtags[0].getBoundingClientRect().right <= hashtagsContainer.getBoundingClientRect().left) {
|
||||
|
|
Loading…
Reference in a new issue