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

Commit

Permalink
fix for minified build
Browse files Browse the repository at this point in the history
  • Loading branch information
redmunds committed Jul 30, 2014
1 parent f4b9c33 commit 873e768
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ module.exports = function (grunt) {
'thirdparty/CodeMirror2/mode/{,*/}*',
'thirdparty/CodeMirror2/theme/{,*/}*',
'thirdparty/i18n/*.js',
'thirdparty/text/*.js'
'thirdparty/text/*.js',
'utils/Compatibility.js'
]
},
/* styles, fonts and images */
Expand Down
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ define(function (require) {
// Load compatibility shims--these need to load early, be careful moving this
require(["utils/Compatibility"], function () {
// Load the brackets module. This is a self-running module that loads and runs the entire application.
require(["brackets"]);
require("brackets");
});
});

0 comments on commit 873e768

Please sign in to comment.