10 lines
196 B
JavaScript
10 lines
196 B
JavaScript
Tea.context(function () {
|
|
if (typeof this.apps == "undefined") {
|
|
this.apps = [];
|
|
}
|
|
|
|
this.createApp = function () {
|
|
window.location = "/httpdns/apps/create";
|
|
};
|
|
});
|