1. Create a new empty project 2. Create a file called MyModule.js containing: ``` define(function (require, exports, module) { function something() { } }); ``` 1. Create another file called MyCaller.js containing: ``` define(function (require, exports, module) { var MyModule = require("MyModule"); }); ``` 1. In MyCaller, below the `var` statement, type `MyModule.` - nothing is hinted (correct) 2. Switch back to MyModule.js and add `exports.something = something` below the function 3. Save MyModule.js 4. Switch back to MyCaller and bring up code hints after `MyModule.` Result: Still no hints. If you reload Brackets, you'll get the proper hint list (`something`).
varstatement, typeMyModule.- nothing is hinted (correct)exports.something = somethingbelow the functionMyModule.Result: Still no hints. If you reload Brackets, you'll get the proper hint list (
something).