diff --git a/src/utils/ExtensionUtils.js b/src/utils/ExtensionUtils.js index c3f7eb02c24..a7e33ca3f1a 100644 --- a/src/utils/ExtensionUtils.js +++ b/src/utils/ExtensionUtils.js @@ -175,7 +175,7 @@ define(function (require, exports, module) { * @return {!$.Promise} A promise object that is resolved with the contents of the requested file **/ function loadFile(module, path) { - var url = isAbsolutePathOrUrl(path) ? path : getModuleUrl(module, path), + var url = PathUtils.isAbsoluteUrl(path) ? path : getModuleUrl(module, path), promise = $.get(url); return promise;