Skip to content

Commit

Permalink
Merge pull request #117 from Moros1138/fix-share-bug-pointed-out-by-j…
Browse files Browse the repository at this point in the history
…avid

Fix share bug pointed out by javid
  • Loading branch information
Moros1138 committed Jul 5, 2024
2 parents 1dd7e0b + e9ca183 commit cd54350
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file. Each batch of changes is marked by the date it was published to the repository for deployment to the PGEtinker site.

It is a summary of changes that would be pertinent to the end user of the PGEtinker website. For a comprehensive history of changes made to the project, please refer to the repository's commit history.
## 20204-07-05

- Fixed bug involving shared code persistence
- Changed threshold for responsive navbar

## 2024-06-30

Expand Down
2 changes: 1 addition & 1 deletion resources/css/app/navbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
}
}

@media screen and (min-width: 761px) and (max-width: 1024px) {
@media screen and (min-width: 761px) and (max-width: 1045px) {
#header {
nav {
.menu {
Expand Down
Binary file added resources/images/PGEtinker-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions resources/js/components/EditorPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,9 @@ export default class EditorPanel

if(this.sharedFlag)
{
this.sharedFlag = false;
document.querySelector("#code").innerHTML = "";

if(this.staging)
{
window.history.replaceState({}, "", "/staging/");
Expand Down

0 comments on commit cd54350

Please sign in to comment.