mc.blade.php 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. {{-- lean wrapper for 2 pane page --}}
  2. <!doctype html>
  3. <html lang="en" class="h-100">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  9. <link href="/css/app.css" rel="stylesheet">
  10. <link href="/v-splitter-px/v-splitter.css" rel="stylesheet" >
  11. <script src="/v-splitter-px/v-splitter.js"></script>
  12. <title>Stag | MCP</title>
  13. </head>
  14. <body class="h-100">
  15. <div class="row mx-0 h-100">
  16. <div class="col-9 px-0 app-left-panel">
  17. <iframe id="stag_mcp_lhs" src="{{ $page }}" frameborder="0" class="h-100 w-100"></iframe>
  18. </div>
  19. <div class="col-3 border-left app-right-panel pr-1">
  20. <iframe id="stag_mcp_rhs" src="/pro/meet" frameborder="0" class="h-100 w-100"></iframe>
  21. </div>
  22. </div>
  23. <script>
  24. initVSplitter('stag-mc-main', $('.app-left-panel'), $('.app-right-panel'));
  25. window.openInRHS = function(_url) {
  26. $('#stag_mcp_rhs').attr('src', _url);
  27. return false;
  28. };
  29. </script>
  30. </body>
  31. </html>