Skip to content

Commit

Permalink
closes #927
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelcobain committed Jun 8, 2018
1 parent cdd1cd1 commit 666f06d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion addon/components/paper-progress-circular.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/**
* @module ember-paper
*/
/* globals FastBoot */
import { equal } from '@ember/object/computed';

import Component from '@ember/component';
Expand Down Expand Up @@ -159,7 +160,7 @@ export default Component.extend(ColorMixin, {

lastAnimationId: 0,
renderCircle(animateFrom, animateTo, ease = linearEase, animationDuration = 100, iterationCount = 0, dashLimit = 100) {
if (this.isDestroyed || this.isDestroying) {
if (this.isDestroyed || this.isDestroying || typeof FastBoot !== 'undefined') {
return;
}

Expand Down

0 comments on commit 666f06d

Please sign in to comment.