You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
365 B

kodReady.push(function(){
kodApp.add({
name:"picasa",
title:"{{LNG.Plugin.default.picasa}}",
ext:"{{config.fileExt}}",
sort:"{{config.fileSort}}",
icon:"x-item-file x-png",
callback:function(imagePath,ext){
var appStatic = "{{pluginHost}}static/";
require.async(appStatic+'page.js',function(app){
app(imagePath,appStatic)
});
}
});
});