1
0
mirror of https://github.com/flarum/core.git synced 2025-07-25 18:51:40 +02:00
Files
php-flarum/ember/app/components/ui/controls/loading-indicator.js
2015-01-03 21:51:47 +10:30

12 lines
215 B
JavaScript

import Ember from 'ember';
export default Ember.Component.extend({
classNames: ['loading'],
layout: Ember.Handlebars.compile(' '),
didInsertElement: function() {
this.$().spin(this.get('size'));
}
});