Skip to content

Commit bb90844

Browse files
Update action procession.
1 parent 9d2db7e commit bb90844

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

editor.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ <h2 class="modal-title"><i class="fa fa-download"></i> <strong>{{ save-but }}</s
9797
<div id="addFileHeader">
9898
<h2 class="modal-title"><i class="fa fa-download"></i> <strong>{{ files-title }}</strong></h2>
9999
</div>
100-
<div id="addFileHelp"><a id="expandHelpPara"><i class="fa fa-info-circle" aria-hidden="true"> <span>{{ help-button }}</span></i></a></div>
100+
<div id="addFileHelp"><a class="action" id="files-expand-help"><i class="fa fa-info-circle" aria-hidden="true"> <span>{{ help-button }}</span></i></a></div>
101101
</div>
102-
<div id="fileHelpPara">{{ file-help-text }}<a href="help.html#fs" target="_blank">{{ help-link }}</a>.</div>
102+
<div id="fileHelpPara">{{ file-help-text }}<a href="help.html#fs" target="_blank" class="action" id="files-help-link">{{ help-link }}</a>.</div>
103103
<div class="expandable">
104104
<div class="expandable-always-visible">
105105
<button type="button" class="action save-button show" id="show-files" title="{{ show-files }}">{{ show-files }} &nbsp;<i class="fa fa-caret-down"></i></button>
@@ -363,9 +363,9 @@ <h2><i class="fa fa-unlock-alt"></i> <strong>{{ title }}</strong></h2>
363363
<div class="buttons_menu_item">
364364
<span id="lang-select">Select Language:</span>
365365
<ul class="tree">
366-
<li><span title="English"><a href="#" class="lang-choice" id="en" tabindex="121">English</a></span></li>
367-
<li><span title="Spanish"><a lang="es" href="#" class="lang-choice" id="es" tabindex="122">Español</a></span></li>
368-
<li><span title="Polish"><a lang="pl" href="#" class="lang-choice" id="pl" tabindex="123">Polski</a></span></li>
366+
<li><span title="English"><a href="#" class="action lang-choice" id="en" tabindex="121">English</a></span></li>
367+
<li><span title="Spanish"><a lang="es" href="#" class="action lang-choice" id="es" tabindex="122">Español</a></span></li>
368+
<li><span title="Polish"><a lang="pl" href="#" class="action lang-choice" id="pl" tabindex="123">Polski</a></span></li>
369369
</ul>
370370
<div><a id="add-language-link" class="action" title="Add a language translation to the Editor" href="https://support.microbit.org/solutions/articles/19000106022-translating-the-micro-bit-python-editor" target="_blank" tabindex="124">Add a language</a></div>
371371
</div>

partial-flashing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ let PartialFlashing = {
712712
// Send event
713713
var details = {
714714
"flash-type": "partial-flash",
715-
"event-type": "error",
715+
"event-type": "info",
716716
"message": "flash-failed" + "/" + "attempting-full-flash"
717717
};
718718

python-main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -957,7 +957,7 @@ function web_editor(config) {
957957
}
958958
downloadFileFromFilesystem('main.py');
959959
});
960-
$("#expandHelpPara").click(function(){
960+
$("#files-expand-help").click(function(){
961961
if ($("#fileHelpPara").css("display")=="none"){
962962
$("#fileHelpPara").show();
963963
$("#addFile").css("margin-bottom","10px");

0 commit comments

Comments
 (0)