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

Commit

Permalink
Merge pull request #7612 from adobe/zaggino/issue-7611
Browse files Browse the repository at this point in the history
fixes #7611
  • Loading branch information
redmunds committed Apr 24, 2014
2 parents 871fc40 + fbccd16 commit e3bc31c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/ExtensionUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e3bc31c

Please sign in to comment.