在决策报表中展示动态时钟。
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.

19 lines
565 B

package com.fr.plugin.widget.clock;
import com.fr.stable.fun.impl.AbstractJavaScriptFileHandler;
/**
* @author richie
* @date 2015-03-23
* @since 8.0
* 如果要使用canvas实现的时钟就使用widget.clock.js这个文件
* 如果要使用css3实现的时钟就使用widget.otherclock.js这个文件
*/
public class ClockJavaScriptFileBridge extends AbstractJavaScriptFileHandler {
@Override
public String[] pathsForFiles() {
return new String[]{
"/com/fr/plugin/widget/clock/widget.otherclock.js"
};
}
}