diff --git a/CHANGELOG.md b/CHANGELOG.md index 4de393a..bd39d2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/resources/css/app/navbar.scss b/resources/css/app/navbar.scss index 887175d..c5b6b05 100644 --- a/resources/css/app/navbar.scss +++ b/resources/css/app/navbar.scss @@ -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 { diff --git a/resources/images/PGEtinker-logo.png b/resources/images/PGEtinker-logo.png new file mode 100644 index 0000000..85f2c79 Binary files /dev/null and b/resources/images/PGEtinker-logo.png differ diff --git a/resources/js/components/EditorPanel.js b/resources/js/components/EditorPanel.js index 278183b..5c88e8e 100644 --- a/resources/js/components/EditorPanel.js +++ b/resources/js/components/EditorPanel.js @@ -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/");