Skip to content

Commit

Permalink
Issue #1632: add edison API v2 compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
bjost2s committed Jul 23, 2024
1 parent 8c357d4 commit 2188b20
Show file tree
Hide file tree
Showing 15 changed files with 220 additions and 256 deletions.
2 changes: 1 addition & 1 deletion OpenRobertaServer/staticResources/css/roberta.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion OpenRobertaServer/staticResources/css/roberta.css.map

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion OpenRobertaServer/staticResources/js/helper/comm.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion OpenRobertaServer/staticResources/js/helper/util.js

Large diffs are not rendered by default.

12 changes: 11 additions & 1 deletion OpenRobertaWeb/css/roberta.css
Original file line number Diff line number Diff line change
Expand Up @@ -1223,11 +1223,21 @@ button#simCustomObstacle.typcn:before {

.modal-header,
.modal-footer {
border: 0;
border: none;
padding: 16px 16px 20px;
text-align: left;
}

.modal-header {
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}

.modal-footer {
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
}

.form-control:focus, .form-select:focus {
box-shadow: none;
-webkit-box-shadow: none;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,7 @@ export abstract class AbstractPromptConnection extends AbstractConnection {
}

createDownloadLink(fileName: string, content) {
if (!('msSaveOrOpenBlob' in navigator)) {
$('#trA').removeClass('hidden');
} else {
$('#trA').addClass('hidden');
if ('msSaveOrOpenBlob' in navigator) {
UTIL.download(fileName, content);
GUISTATE_C.setConnectionState('error');
}
Expand Down
Loading

0 comments on commit 2188b20

Please sign in to comment.