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
19 lines
565 B
7 years ago
|
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"
|
||
|
};
|
||
|
}
|
||
|
}
|