2017-11-29 00:36:49 -06:00

30 lines
575 B
JavaScript

(function() {
var U = window.uestibulum;
var T = {
name: 'minimal',
init: function(uiView) {
// Logic to setup the theme
uiView.$el.addClass('theme-' + uiView.theme.name);
},
render: function(uiView) {
// custom render logic
uiView.loginView.render();
uiView.$('input[name="pwd"]').focus();
},
unload: function(uiView) {
// Logic to tear down the theme
uiView.$el.removeClass('theme-' + uiView.theme.name);
},
getGreeting: function() { return ''; }
};
U.themes['minimal'] = T;
})();