Skip to content

Commit e8cfe54

Browse files
author
Lanny McNie
committed
Fixed issues with name change refactor, which affects GET requests that have values.
1 parent ab565a4 commit e8cfe54

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

VERSIONS.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ Version NEXT [not yet released]
77
- Fixed issue where XHR-loaded images might not clean up their respective ObjectURL
88
- Removed BrowserDetect from utils (no longer used)
99
- Bug fixes
10-
- documentation updates
10+
- Documentation updates
11+
- Fixed issues with GET requests that have values introduced during refactor
1112

1213

1314
Version 0.6.1 [May 21, 2015]

src/preloadjs/utils/RequestUtils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,9 @@
150150
}
151151

152152
if (idx != -1) {
153-
return src.slice(0, idx) + '?' + this._formatQueryString(data, query);
153+
return src.slice(0, idx) + '?' + this.formatQueryString(data, query);
154154
} else {
155-
return src + '?' + this._formatQueryString(data, query);
155+
return src + '?' + this.formatQueryString(data, query);
156156
}
157157
};
158158

0 commit comments

Comments
 (0)