-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Always show share button + warn about potential errors
- Loading branch information
Showing
6 changed files
with
140 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,13 +43,13 @@ | |
<a id="newButton" class="cw-button red"> | ||
<i class="mdi mdi-18px mdi-plus"></i> New | ||
</a> | ||
<a id="saveButton" class="cw-button blue" style="display: none;"> | ||
<a id="saveButton" class="cw-button blue" style="display: none"> | ||
<i class="mdi mdi-18px mdi-cloud-upload"></i> Save | ||
</a> | ||
<a id="saveAsButton" class="cw-button blue"> | ||
<i class="mdi mdi-18px mdi-dots-horizontal"></i> Save As | ||
</a> | ||
<a id="deleteButton" class="cw-button red" style="display: none;"> | ||
<a id="deleteButton" class="cw-button red" style="display: none"> | ||
<i class="mdi mdi-18px mdi-delete"></i> Delete | ||
</a> | ||
</div> | ||
|
@@ -59,10 +59,10 @@ | |
<div | ||
class="dropbox ui-layout-center" | ||
id="blocklyDiv" | ||
style="height: 84%; width: 100%;" | ||
style="height: 84%; width: 100%" | ||
></div> | ||
|
||
<div id="result" style="display: none;" class="ui-layout-east"> | ||
<div id="result" style="display: none" class="ui-layout-east"> | ||
<div | ||
id="obsolete-code-alert" | ||
class="obsolete-code-alert-fadeout" | ||
|
@@ -72,19 +72,19 @@ | |
class="dropbox" | ||
width="500" | ||
height="500" | ||
style="display: none;" | ||
style="display: none" | ||
></iframe> | ||
|
||
<pre | ||
id="message" | ||
class="dropbox" | ||
style="width: 100%; min-height: 100px; padding: 5px; display: none;" | ||
style="width: 100%; min-height: 100px; padding: 5px; display: none" | ||
></pre> | ||
|
||
<span | ||
><a | ||
type="button" | ||
style="margin-top: 5px;" | ||
style="margin-top: 5px" | ||
id="editButton" | ||
target="_blank" | ||
class="cw-button blue" | ||
|
@@ -95,7 +95,7 @@ | |
<pre | ||
id="genCode" | ||
class="dropbox cm-s-default CodeMirror" | ||
style="width: 100%; height: 100%; padding: 10px;" | ||
style="width: 100%; height: 100%; padding: 10px" | ||
></pre> | ||
</div> | ||
</div> | ||
|
@@ -105,13 +105,13 @@ | |
id="navButton" | ||
class="cw-button blue" | ||
onclick="window.mainLayout.toggle('west')" | ||
style="display: none;" | ||
style="display: none" | ||
><i class="mdi mdi-18px mdi-menu"></i | ||
></a> | ||
<a id="signin" class="cw-button blue" | ||
><i class="mdi mdi-18px mdi-login"></i> Sign In</a | ||
> | ||
<a id="signout" class="cw-button blue" style="display: none;" | ||
<a id="signout" class="cw-button blue" style="display: none" | ||
><i class="mdi mdi-18px mdi-logout"></i> Sign Out</a | ||
> | ||
<a id="docButton" class="cw-button blue" | ||
|
@@ -130,11 +130,11 @@ | |
<a | ||
id="shareFolderButton" | ||
class="cw-button yellow" | ||
style="display: none;" | ||
style="display: none" | ||
><i class="mdi mdi-18px mdi-folder-outline"></i> Share | ||
Folder</a | ||
> | ||
<a id="shareButton" class="cw-button yellow" style="display: none;" | ||
<a id="shareButton" class="cw-button yellow" | ||
><i class="mdi mdi-18px mdi-share"></i> Share</a | ||
> | ||
<a id="btnStop" class="cw-button red" | ||
|
@@ -233,7 +233,7 @@ | |
src="mirrored/cdn.jsdelivr.net/npm/[email protected]/dist/promise.min.js" | ||
></script> | ||
|
||
<xml id="toolbox" style="display: none;"> | ||
<xml id="toolbox" style="display: none"> | ||
<category name="Programs"> | ||
<block type="cwDrawingOf"></block> | ||
<block type="cwActivityOf"></block> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.