Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Re-enable JS Code Hints extension for in-browser, and add demo JS fil…
Browse files Browse the repository at this point in the history
…e to

dummy filesystem so it's easy to see it in action.
  • Loading branch information
peterflynn committed Dec 8, 2014
1 parent c202b03 commit e2c0e8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/filesystem/impls/demo/DemoFileSystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ define(function (require, exports, module) {
// - object = nested folder containing more entries
var demoContent = {
"index.html": "<html>\n<head>\n <title>Hello, world!</title>\n</head>\n<body>\n Welcome to Brackets!\n</body>\n</html>",
"main.css": ".hello {\n content: 'world!';\n}"
"main.css": ".hello {\n content: 'world!';\n}",
"main.js": "function sayHello() {\n console.log('Hello, world!');\n}"
};


Expand Down
2 changes: 1 addition & 1 deletion src/utils/ExtensionLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ define(function (require, exports, module) {
"HtmlEntityCodeHints",
"InlineColorEditor",
"InlineTimingFunctionEditor",
//"JavaScriptCodeHints",
"JavaScriptCodeHints",
"JavaScriptQuickEdit",
"JSLint",
"LESSSupport",
Expand Down

0 comments on commit e2c0e8e

Please sign in to comment.