Skip to content

Commit

Permalink
Update ace library version to 1.24.1 and fix code syntax in editor.html
Browse files Browse the repository at this point in the history
  • Loading branch information
skrashevich committed Aug 23, 2023
1 parent 357e7c1 commit 6f5ba2a
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://cdnjs.cloudflare.com/ajax/libs/ace/1.14.0/ace.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.24.1/ace.min.js"></script>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
Expand Down Expand Up @@ -32,7 +32,7 @@
<br>
<div id="config"></div>
<script>
ace.config.set('basePath', 'https://cdnjs.cloudflare.com/ajax/libs/ace/1.14.0/');
ace.config.set('basePath', 'https://cdnjs.cloudflare.com/ajax/libs/ace/1.24.1/');
const editor = ace.edit('config', {
mode: 'ace/mode/yaml',
});
Expand Down

0 comments on commit 6f5ba2a

Please sign in to comment.