1
0
mirror of https://github.com/flarum/core.git synced 2025-10-16 09:16:06 +02:00

Set up responsive admin layout

This commit is contained in:
Toby Zerner
2015-03-30 12:46:55 +10:30
parent d64ca6bce3
commit 9ae5563947
22 changed files with 257 additions and 23 deletions

View File

@@ -0,0 +1,9 @@
import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
toggleDrawer: function() {
this.toggleProperty('drawerShowing');
}
}
});