KodExplorer/plugins/googleDocs/static/main.js

14 lines
355 B
JavaScript
Executable File

kodReady.push(function(){
kodApp.add({
name:"googleDocs",
title:"{{LNG.googleDocs.meta.name}}",
ext:"{{config.fileExt}}",
sort:"{{config.fileSort}}",
icon:'{{pluginHost}}static/images/icon.png',
callback:function(path,ext){
var url = '{{pluginApi}}&path='+core.pathCommon(path);
window.open(url);//不支持对话框打开
}
});
});