diff --git a/framework/core/ember/app/components/ui/controls/loading-indicator.js b/framework/core/ember/app/components/ui/controls/loading-indicator.js index e908f30f0..b1c2b3313 100644 --- a/framework/core/ember/app/components/ui/controls/loading-indicator.js +++ b/framework/core/ember/app/components/ui/controls/loading-indicator.js @@ -7,6 +7,8 @@ export default Ember.Component.extend({ size: 'small', didInsertElement: function() { - this.$().spin(this.get('size')); + var size = this.get('size'); + Ember.$.fn.spin.presets[size].zIndex = 'auto'; + this.$().spin(size); } });