17 lines
439 B
JavaScript
Raw Permalink Normal View History

2024-08-31 01:03:37 +08:00
kodReady.push(function(){
Events.bind('explorer.kodApp.before',function(appList){
appList.push({
name:'{{package.id}}',
title:'{{package.name}}',
ext:"{{config.fileExt}}",
sort:"{{config.fileSort}}",
icon:"x-item-icon x-png",
callback:function(path,ext,name){
var appStatic = "{{pluginHost}}static/";
requireAsync(appStatic+'page.js',function(app){
app(path,ext,name,appStatic)
});
}
});
});
});