From fbccd16587134a8fd784f830e08c6c1947ba8ce5 Mon Sep 17 00:00:00 2001 From: Martin Zagora Date: Thu, 24 Apr 2014 10:09:03 +1000 Subject: [PATCH] fixes #7611 --- src/utils/ExtensionUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;