Skip to content

Commit

Permalink
Code refactoring after #661
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexxIT committed Oct 5, 2023
1 parent 9b404c4 commit 2787620
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions www/editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title>File Editor</title>
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1, maximum-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://unpkg.com/ace-builds@^1.24/src-min/ace.js"></script>
<script src="https://unpkg.com/ace-builds@1.28.0/src-min/ace.js"></script>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
Expand All @@ -31,7 +31,7 @@
<script>
let dump;

ace.config.set('basePath', 'https://unpkg.com/ace-builds@^1.24/src-min/');
ace.config.set('basePath', 'https://unpkg.com/ace-builds@1.28.0/src-min/');
const editor = ace.edit('config', {
mode: 'ace/mode/yaml',
});
Expand Down

0 comments on commit 2787620

Please sign in to comment.