1
0
mirror of https://github.com/flarum/core.git synced 2025-07-31 13:40:20 +02:00

Big component restructure/overhaul

This commit is contained in:
Toby Zerner
2015-01-03 21:51:47 +10:30
parent 0ed141d49e
commit f62e8e2541
44 changed files with 262 additions and 352 deletions

View File

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