@@ -40,7 +40,7 @@ define(function (require, exports, module) {
4040 ProjectManager = brackets . getModule ( "project/ProjectManager" ) ,
4141 KeyBindingManager = brackets . getModule ( "command/KeyBindingManager" ) ,
4242 ExtensionUtils = brackets . getModule ( "utils/ExtensionUtils" ) ,
43- Menus = brackets . getModule ( "command/Menus" ) ,
43+ Menus = brackets . getModule ( "command/Menus" ) ,
4444 prefs = require ( "Prefs" ) ,
4545 COLLAPSE_ALL = "codefolding.collapse.all" ,
4646 COLLAPSE = "codefolding.collapse" ,
@@ -55,14 +55,14 @@ define(function (require, exports, module) {
5555
5656 ExtensionUtils . loadStyleSheet ( module , "main.less" ) ;
5757
58- //load code mirror addons
58+ // Load CodeMirror addons
5959 brackets . getModule ( [ "thirdparty/CodeMirror2/addon/fold/brace-fold" ] ) ;
6060 brackets . getModule ( [ "thirdparty/CodeMirror2/addon/fold/comment-fold" ] ) ;
6161 brackets . getModule ( [ "thirdparty/CodeMirror2/addon/fold/markdown-fold" ] ) ;
6262
63- //still using slightly modified versions of the foldcode.js and foldgutter.js since we
64- //need to modify the gutter click handler to take care of some collapse and expand features
65- //e.g. collapsing all children when 'alt' key is pressed
63+ // Still using slightly modified versions of the foldcode.js and foldgutter.js since we
64+ // need to modify the gutter click handler to take care of some collapse and expand features
65+ // e.g. collapsing all children when 'alt' key is pressed
6666 var foldGutter = require ( "foldhelpers/foldgutter" ) ,
6767 foldCode = require ( "foldhelpers/foldcode" ) ,
6868 indentFold = require ( "foldhelpers/indentFold" ) ;
0 commit comments