Renamed files to match the contained prototype

This commit is contained in:
jos 2014-05-29 18:51:17 +02:00
parent 282dc4f7ac
commit 6eea2b6335
12 changed files with 13 additions and 13 deletions

View File

@ -43,16 +43,16 @@ task('build', ['clear'], function () {
// concatenate the javascript files
concat({
src: [
jsoneditorSrc + 'js/jsoneditor.js',
jsoneditorSrc + 'js/treeeditor.js',
jsoneditorSrc + 'js/texteditor.js',
jsoneditorSrc + 'js/node.js',
jsoneditorSrc + 'js/appendnode.js',
jsoneditorSrc + 'js/contextmenu.js',
jsoneditorSrc + 'js/history.js',
jsoneditorSrc + 'js/JSONEditor.js',
jsoneditorSrc + 'js/TreeEditor.js',
jsoneditorSrc + 'js/TextEditor.js',
jsoneditorSrc + 'js/Node.js',
jsoneditorSrc + 'js/AppendNode.js',
jsoneditorSrc + 'js/ContextMenu.js',
jsoneditorSrc + 'js/History.js',
jsoneditorSrc + 'js/modebox.js',
jsoneditorSrc + 'js/searchbox.js',
jsoneditorSrc + 'js/highlighter.js',
jsoneditorSrc + 'js/SearchBox.js',
jsoneditorSrc + 'js/Highlighter.js',
jsoneditorSrc + 'js/util.js',
jsoneditorSrc + 'js/module.js'
],

View File

@ -3,11 +3,11 @@
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<!-- jsoneditor -->
<!-- json editor -->
<link rel="stylesheet" type="text/css" href="../jsoneditor.css">
<script type="text/javascript" src="../jsoneditor.js"></script>
<!-- ace code editor -->
<!-- ace editor -->
<script type="text/javascript" src="../asset/ace/ace.js"></script>
<!-- json lint -->

View File

@ -3,11 +3,11 @@
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<!-- jsoneditor -->
<!-- json editor -->
<link rel="stylesheet" type="text/css" href="../jsoneditor.css">
<script type="text/javascript" src="../jsoneditor.js"></script>
<!-- ace code editor -->
<!-- ace editor -->
<script type="text/javascript" src="../node_modules/ace/build/src-min/ace.js"></script>
<script type="text/javascript" src="../src/js/ace/theme-jsoneditor.js"></script>