KodExplorer/plugins/simpleClock/static/main.js

17 lines
332 B
JavaScript
Raw Normal View History

2017-08-23 19:40:27 +00:00
kodReady.push(function(){
2017-08-30 14:19:01 +00:00
if(!$.supportCss3() || isWap()){//ie8 ie9
2017-08-23 19:40:27 +00:00
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
});
});