meteor-factory / meteor-admin-lte

23 stars 34 forks source link

Use AdminLTE.helpers to change skin #18

Closed 55 closed 8 years ago

55 commented 8 years ago

Found this code in admin-lte.js:

Template.AdminLTE.helpers({
  skin: function () {
    return 'blue';
  }
});

It works, it changes div class to skin name I specify, but not styles.

Is it possible some how to choose skins from client using this helper? We are building application and want users to change dashboard theme.