Skip to content

Commit

Permalink
Fix regression #4054: use new ajax.getArrayBuffer interface for rtl-t…
Browse files Browse the repository at this point in the history
…ext (#4055)
  • Loading branch information
ChrisLoer authored and lucaswoj committed Jan 26, 2017
1 parent de6af06 commit 17fa667
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/source/rtl_text_plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ module.exports.setRTLTextPlugin = function(pluginURL, callback) {
callback(err);
} else {
pluginBlobURL =
window.URL.createObjectURL(new window.Blob([response]), {type: "text/javascript"});
window.URL.createObjectURL(new window.Blob([response.data]), {type: "text/javascript"});

for (const pluginAvailableCallback of pluginAvailableCallbacks) {
pluginAvailableCallback(pluginBlobURL);
Expand Down

0 comments on commit 17fa667

Please sign in to comment.