KodExplorer/plugins/simpleClock/static/main.js

17 lines
321 B
JavaScript
Raw Normal View History

2017-08-23 19:40:27 +00:00
kodReady.push(function(){
if(!$.supportCss3()){//ie8 ie9
return;
}
if(_.get(window,'Config.pageApp') != 'desktop'){
return;
}
//加载时钟挂件
$.artDialog.open("{{pluginApi}}",{
title:"clock",
2017-08-26 09:16:57 +00:00
top: 40,
left:$(window).width() - 210,
2017-08-23 19:40:27 +00:00
width:'200px',
height:'200px',
simple:true
});
});