Skip to content

Commit

Permalink
Fixed issues with name change refactor, which affects GET requests th…
Browse files Browse the repository at this point in the history
…at have values.
  • Loading branch information
Lanny McNie committed Nov 26, 2015
1 parent ab565a4 commit e8cfe54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion VERSIONS.txt
Expand Up @@ -7,7 +7,8 @@ Version NEXT [not yet released]
- Fixed issue where XHR-loaded images might not clean up their respective ObjectURL - Fixed issue where XHR-loaded images might not clean up their respective ObjectURL
- Removed BrowserDetect from utils (no longer used) - Removed BrowserDetect from utils (no longer used)
- Bug fixes - Bug fixes
- documentation updates - Documentation updates
- Fixed issues with GET requests that have values introduced during refactor




Version 0.6.1 [May 21, 2015] Version 0.6.1 [May 21, 2015]
Expand Down
4 changes: 2 additions & 2 deletions src/preloadjs/utils/RequestUtils.js
Expand Up @@ -150,9 +150,9 @@
} }


if (idx != -1) { if (idx != -1) {
return src.slice(0, idx) + '?' + this._formatQueryString(data, query); return src.slice(0, idx) + '?' + this.formatQueryString(data, query);
} else { } else {
return src + '?' + this._formatQueryString(data, query); return src + '?' + this.formatQueryString(data, query);
} }
}; };


Expand Down

0 comments on commit e8cfe54

Please sign in to comment.