oopyoung / AdminLTE

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tips

This project is based on yp2:AdminLTE,I have been modified the /dist/css/AdminLTE.css and /dist/css/AdminLTE.min.css.Because China can not access Google Fonts

Meteor usage

Installation

meteor add meteoryoung:admin-lte

To activate AdminLTE app on template put this code in Template.foo.onRendered:

Template.foo.onRendered(function () {

    var self = this;
    if (self.view.isRendered) {
        var body = $('body');
            body.removeClass();
            body.addClass("skin-blue sidebar-mini");

        $(function () {
            MeteorAdminLTE.run()
        });
    }
});

About

License:MIT License


Languages

Language:HTML 47.1%Language:JavaScript 43.8%Language:CSS 9.1%Language:PHP 0.0%