Skip to content

Commit

Permalink
Workspace Function Params
Browse files Browse the repository at this point in the history
Forgot to update the references to functions from the Workspace module, I changed their parameter structure in the definitions for the functions, but the HTML for the app still referenced them with the old parameter structures.
  • Loading branch information
Offroaders123 committed Mar 3, 2023
1 parent ebc56df commit eef6f29
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@
<menu-drop id="view_menu" data-select="no-appearance">
<button>View</button>
<ul>
<li data-selected onclick="setView({ type: 'code' });" data-shortcuts='{ "default": "Ctrl+Shift+1", "macOS": "Ctrl+Cmd+1" }' data-value="code">Code</li>
<li onclick="setView({ type: 'split' });" data-shortcuts='{ "default": "Ctrl+Shift+2", "macOS": "Ctrl+Cmd+2" }' data-value="split">Split</li>
<li onclick="setView({ type: 'preview' });" data-shortcuts='{ "default": "Ctrl+Shift+3", "macOS": "Ctrl+Cmd+3" }' data-value="preview">Preview</li>
<li data-selected onclick="setView('code');" data-shortcuts='{ "default": "Ctrl+Shift+1", "macOS": "Ctrl+Cmd+1" }' data-value="code">Code</li>
<li onclick="setView('split');" data-shortcuts='{ "default": "Ctrl+Shift+2", "macOS": "Ctrl+Cmd+2" }' data-value="split">Split</li>
<li onclick="setView('preview');" data-shortcuts='{ "default": "Ctrl+Shift+3", "macOS": "Ctrl+Cmd+3" }' data-value="preview">Preview</li>
<li><hr></li>
<li onclick="setOrientation();" data-shortcuts='{ "default": "Ctrl+Shift+4", "macOS": "Ctrl+Cmd+4" }' data-no-select>Orientation</li>
<li onclick="createDisplay();" data-shortcuts='{ "default": "Ctrl+Shift+5", "macOS": "Ctrl+Cmd+5" }' data-no-select>Display</li>
Expand All @@ -198,8 +198,8 @@
<li onclick="uuid_generator_card.open();" data-shortcuts='{ "default": "Ctrl+Shift+O", "macOS": "Shift+Cmd+O" }'>UUID Generator</li>
<li>Insert Templates...
<ul>
<li onclick="Tools.insertTemplate({ type: 'html' });" data-shortcuts='{ "default": "Ctrl+Shift+H", "macOS": "Shift+Cmd+H" }'>HTML</li>
<li onclick="Tools.insertTemplate({ type: 'pack-manifest-bedrock' });">Pack Manifest - Bedrock</li>
<li onclick="Tools.insertTemplate('html');" data-shortcuts='{ "default": "Ctrl+Shift+H", "macOS": "Shift+Cmd+H" }'>HTML</li>
<li onclick="Tools.insertTemplate('pack-manifest-bedrock');">Pack Manifest - Bedrock</li>
</ul>
</li>
<li>Online Resources...
Expand Down

0 comments on commit eef6f29

Please sign in to comment.