DmitrMakeev commited on
Commit
ab34b08
·
verified ·
1 Parent(s): 7e8dea1

Update pages.html

Browse files
Files changed (1) hide show
  1. pages.html +15 -14
pages.html CHANGED
@@ -703,15 +703,15 @@ editor.on('load', function() {
703
  </script>
704
 
705
  <script>
706
- // Функция для показа/скрытия приложения
707
- document.addEventListener('DOMContentLoaded', () => {
708
- // Функция для тестовой кнопки
709
  document.addEventListener('DOMContentLoaded', () => {
 
710
  document.getElementById('testBtn').addEventListener('click', function() {
711
  console.log('Тестовая кнопка работает!');
 
712
  const editor = grapesjs.editors[0]; // Предполагается, что у вас есть только один редактор
713
  const htmlContent = editor.getHtml();
714
  const cssContent = editor.getCss();
 
715
  const fullHtmlContent = `
716
  <!DOCTYPE html>
717
  <html lang="en">
@@ -726,6 +726,7 @@ editor.on('load', function() {
726
  </body>
727
  </html>
728
  `;
 
729
  const blob = new Blob([fullHtmlContent], { type: 'text/html' });
730
  const link = document.createElement('a');
731
  link.href = URL.createObjectURL(blob);
@@ -734,18 +735,18 @@ editor.on('load', function() {
734
  link.click();
735
  document.body.removeChild(link);
736
  });
737
- });
738
- // Функция для показа/скрытия приложения
739
- document.getElementById('toggleAppBtn').addEventListener('click', function() {
740
- const app = document.getElementById('gjs');
741
- if (app.style.left === '0px' || app.style.left === '') {
742
- app.style.left = '-15%'; // Скрыть приложение
743
- } else {
744
- app.style.left = '0'; // Показать приложение
745
- }
746
- });
747
  });
748
- </script>
 
749
 
750
  <script>
751
  document.getElementById('uploadForm').addEventListener('submit', function(event) {
 
703
  </script>
704
 
705
  <script>
 
 
 
706
  document.addEventListener('DOMContentLoaded', () => {
707
+ // Функция для тестовой кнопки
708
  document.getElementById('testBtn').addEventListener('click', function() {
709
  console.log('Тестовая кнопка работает!');
710
+ // Получаем HTML-код из GrapesJS
711
  const editor = grapesjs.editors[0]; // Предполагается, что у вас есть только один редактор
712
  const htmlContent = editor.getHtml();
713
  const cssContent = editor.getCss();
714
+
715
  const fullHtmlContent = `
716
  <!DOCTYPE html>
717
  <html lang="en">
 
726
  </body>
727
  </html>
728
  `;
729
+
730
  const blob = new Blob([fullHtmlContent], { type: 'text/html' });
731
  const link = document.createElement('a');
732
  link.href = URL.createObjectURL(blob);
 
735
  link.click();
736
  document.body.removeChild(link);
737
  });
738
+
739
+ // Функция для показа/скрытия приложения
740
+ document.getElementById('toggleAppBtn').addEventListener('click', function() {
741
+ const app = document.getElementById('gjs');
742
+ if (app.style.left === '0px' || app.style.left === '') {
743
+ app.style.left = '-15%'; // Скрыть приложение
744
+ } else {
745
+ app.style.left = '0'; // Показать приложение
746
+ }
 
747
  });
748
+ });
749
+ </script>
750
 
751
  <script>
752
  document.getElementById('uploadForm').addEventListener('submit', function(event) {