From 9b5d45394b3cc7843bac01e6941ecf58fbb0f451 Mon Sep 17 00:00:00 2001 From: Marcel Gerber Date: Thu, 31 Oct 2013 19:21:00 +0100 Subject: [PATCH] Use require instead of getModule for lodash --- src/LiveDevelopment/LiveDevelopment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LiveDevelopment/LiveDevelopment.js b/src/LiveDevelopment/LiveDevelopment.js index 238ff09672e..0c7dd96b5ab 100644 --- a/src/LiveDevelopment/LiveDevelopment.js +++ b/src/LiveDevelopment/LiveDevelopment.js @@ -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;