mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2024-11-08 06:28:29 +01:00
36 lines
814 B
JavaScript
36 lines
814 B
JavaScript
(function() {
|
|
void 0;
|
|
var About;
|
|
|
|
About = class About extends this.OS.GUI.BaseApplication {
|
|
constructor(args) {
|
|
super("About", args);
|
|
}
|
|
|
|
main() {
|
|
var me, path;
|
|
me = this;
|
|
this.container = this.find("container");
|
|
path = "os://README.md";
|
|
path.asFileHandle().read().then(function(txt) {
|
|
var converter;
|
|
converter = new showdown.Converter();
|
|
return ($(me.container)).html(converter.makeHtml(txt));
|
|
}).catch(() => {
|
|
return this.notify(__("Unable to read: {0}", path));
|
|
});
|
|
return this.find("btnclose").set("onbtclick", () => {
|
|
return this.quit();
|
|
});
|
|
}
|
|
|
|
};
|
|
|
|
About.singleton = true;
|
|
|
|
About.dependencies = ["os://scripts/showdown.min.js"];
|
|
|
|
this.OS.register("About", About);
|
|
|
|
}).call(this);
|