Skip to content

Commit

Permalink
Merge pull request #661 from skrashevich/230930-unpkg
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexxIT committed Oct 5, 2023
2 parents c3f26c4 + f27f7d2 commit c582b93
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.24.1/ace.min.js"></script>
<script src="https://unpkg.com/ace-builds@^1.24/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://cdnjs.cloudflare.com/ajax/libs/ace/1.24.1/');
ace.config.set('basePath', 'https://unpkg.com/ace-builds@^1.24/src-min/');
const editor = ace.edit('config', {
mode: 'ace/mode/yaml',
});
Expand Down

0 comments on commit c582b93

Please sign in to comment.