Skip to content

Commit

Permalink
refactor: Remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
deziev committed Oct 10, 2019
1 parent 2a5db2c commit 0fe94a6
Showing 1 changed file with 2 additions and 33 deletions.
35 changes: 2 additions & 33 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,41 +41,10 @@ <h1><a href="https://github.com/syntaxseed/terminalfaker">Terminal Faker Demo</a
<span contenteditable="true" class="input" autocorrect="off" autocapitalize="none" autocomplete="off"> </span>
</p>
</div>



<!-- <script src="js/bundle.min.js"></script> !!!!! OUT OF DATE !!!!! TODO: Get Babel working. -->
<!-- Global variables -->
<script src="filesystem.js"></script>
<script src="customCommands.js"></script>
<!-- Minified build -->
<script src="bundle.min.js"></script>
<!-- The above minified bundle contains files in src/ directory: -->
<!-- <script src="js/src/filesystem-utilities.js"></script>
<script src="js/src/cmd-utilities.js"></script>
<script src="js/src/crypto.js"></script>
<script src="js/src/terminal.js"></script>
<script src="js/src/boot.js"></script>
<script src="js/src/system.js"></script>
<script src="js/filesystem.js"></script>
<script src="js/commands.js"></script> -->
<!--
<script>
// ** On-Page Configuration: **
// Whether to use the longer boot load screen. If this is missing, defaults to true.
termFaker.options.useBootLoader = true;
// Set the command prompt style:
const customPrompt = () => { return "guest@TermFake ("+termFaker.path+") $ ";};
// Initialize & show the terminal:
const term = termFaker.init(
document.getElementById("terminal"),
new CustomTerminalCommands(),
customPrompt,
initialFilesystem
);
</script> -->

</body>
</html>

0 comments on commit 0fe94a6

Please sign in to comment.