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

Commit e3bc31c

Browse files
committed
Merge pull request #7612 from adobe/zaggino/issue-7611
fixes #7611
2 parents 871fc40 + fbccd16 commit e3bc31c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/ExtensionUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ define(function (require, exports, module) {
175175
* @return {!$.Promise} A promise object that is resolved with the contents of the requested file
176176
**/
177177
function loadFile(module, path) {
178-
var url = isAbsolutePathOrUrl(path) ? path : getModuleUrl(module, path),
178+
var url = PathUtils.isAbsoluteUrl(path) ? path : getModuleUrl(module, path),
179179
promise = $.get(url);
180180

181181
return promise;

0 commit comments

Comments
 (0)