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

Commit

Permalink
Use require instead of getModule for lodash
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcel Gerber committed Oct 31, 2013
1 parent 5785df6 commit 9b5d453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LiveDevelopment/LiveDevelopment.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ define(function LiveDevelopment(require, exports, module) {

require("utils/Global");

var _ = brackets.getModule("thirdparty/lodash");
var _ = require("thirdparty/lodash");

// Status Codes
var STATUS_ERROR = exports.STATUS_ERROR = -1;
Expand Down

0 comments on commit 9b5d453

Please sign in to comment.