coffeescript-ui
Version:
Coffeescript User Interface System
42 lines (36 loc) • 788 B
JavaScript
// Generated by CoffeeScript 1.10.0
(function() {
var App;
App = (function() {
function App() {
var body;
body = new CUI.VerticalLayout({
top: {
content: new CUI.Label({
centered: true,
text: "I'm a header"
})
},
center: {
content: new CUI.Label({
centered: true,
size: "big",
text: "Hello world!",
icon: "fa-building"
})
},
bottom: {
content: new CUI.Label({
centered: true,
text: "This is the bottom"
})
}
});
CUI.dom.append(document.body, body);
}
return App;
})();
CUI.ready(function() {
return new App();
});
}).call(this);