├── README.md ├── admin.js ├── client ├── autoform.js ├── breadcrumb │ ├── breadcrumb.html │ └── breadcrumb.js ├── collections │ ├── collections.html │ └── collections.js ├── common │ ├── login.html │ ├── login.js │ └── tree.js ├── dashboard │ ├── dashboard.html │ └── dashboard.js ├── defaults.js ├── header │ └── header.html ├── helpers.js ├── layout │ ├── layout.html │ └── layout.js ├── navbar │ ├── navbar.html │ └── navbar.js ├── sidebar │ ├── sidebar.html │ └── sidebar.js └── style.css ├── lib ├── admin.js ├── collections.js └── router.js └── package.js /README.md: -------------------------------------------------------------------------------- 1 | Meteor Admin 2 | ============ 3 | 4 | `$ meteor add mfactory:admin` 5 | 6 | This is the next version of `yogiben:admin`. It features a lot of improvements in the api and AdminLTE theme. Please bear in mind that this is one of the first releases so the api is not set in stone and it also may contain some bugs. 7 | 8 | ## Admin config ## 9 | 10 | Admin package can be configured through `Admin.config` variable. It's `ReactiveDict`, so values can be set and get reactively, e.g: 11 | 12 | ```javascript 13 | Admin.config.set('name', 'My Admin Page'); 14 | Admin.config.get('name'); // "My Admin Page" 15 | ``` 16 | 17 | Config can be accessed in Blaze templates through `Admin.config` helper, e.g: 18 | 19 | ```html 20 |
There are no visible items in this collection.
12 | Add one 13 |