Skip to content

Commit

Permalink
Fix Ember global deprecation
Browse files Browse the repository at this point in the history
A minimal fix for #600. We should probably follow through with the
refactor suggested by @rwjblue in #600 but that can be done later.
  • Loading branch information
chancancode committed Jun 1, 2021
1 parent 3e02036 commit 252cd9f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions assets/browser-fetch.js.t
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(function (originalGlobal) {
define('fetch', ['exports'], function(exports) {
define('fetch', ['ember', 'exports'], function(Ember, exports) {
'use strict';
var Promise = originalGlobal.Ember.RSVP.Promise;
var Promise = Ember.RSVP.Promise;
var supportProps = [
'FormData',
'FileReader',
Expand Down Expand Up @@ -49,8 +49,8 @@
return result;
}

if (originalGlobal.Ember.Test) {
originalGlobal.Ember.Test.registerWaiter(function() {
if (Ember.Test) {
Ember.Test.registerWaiter(function() {
return pending === 0;
});

Expand Down

0 comments on commit 252cd9f

Please sign in to comment.