mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2024-11-08 06:28:29 +01:00
19 lines
420 B
Smarty
19 lines
420 B
Smarty
|
(function() {
|
||
|
// import the CodePad application module
|
||
|
const App = this.OS.application.Antedit;
|
||
|
|
||
|
// define the extension
|
||
|
App.extensions.{0} = class {0} extends App.EditorBaseExtension {
|
||
|
constructor(app) {
|
||
|
super("{0}",app);
|
||
|
}
|
||
|
|
||
|
test() {
|
||
|
return this.notify("Test action is invoked");
|
||
|
}
|
||
|
|
||
|
cleanup() {}
|
||
|
|
||
|
};
|
||
|
|
||
|
}).call(this);
|