Skip to content

Commit

Permalink
apparently there's a maximum scroll, so remove this for now until we …
Browse files Browse the repository at this point in the history
…figure out what's happening there
  • Loading branch information
FuzzyGamesOn committed Apr 7, 2024
1 parent 2ae2dce commit 2dc5044
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const app = createApp({
'count': 1
});

this.scrollToBottom();
// this.scrollToBottom();
},
addLocation: () => {
let newId = 1;
Expand All @@ -91,7 +91,7 @@ const app = createApp({
'placement_type': 'none'
});

this.scrollToBottom();
// this.scrollToBottom();
},
addRegion: () => {
let newId = 1;
Expand All @@ -108,7 +108,7 @@ const app = createApp({
'id': newId
});

this.scrollToBottom();
// this.scrollToBottom();
},

removeItem: (index) => { this.items.splice(index, 1); },
Expand Down

0 comments on commit 2dc5044

Please sign in to comment.