Skip to content

Commit cf84f4e

Browse files
authored
Update page-load.js
Added true parameter to request.open (line 266) method so it literally specifies that it is async request which fixed issue with browsers other than IE and Tumblr
1 parent 3a32a32 commit cf84f4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/page-load.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ proto.stopPrefill = function() {
263263

264264
function request( url, responseType, onLoad, onError ) {
265265
var req = new XMLHttpRequest();
266-
req.open( 'GET', url );
266+
req.open( 'GET', url, true );
267267
// set responseType document to return DOM
268268
req.responseType = responseType || '';
269269

0 commit comments

Comments
 (0)