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.
 
 
 

30 lines
812 B

package com.finebi.plugin;
import com.fr.plugin.transform.FunctionRecorder;
import com.fr.web.struct.Component;
import com.fr.web.struct.category.ParserType;
import com.fr.web.struct.category.ScriptPath;
import com.fr.web.struct.category.StylePath;
/**
* Created by dailer on 19/5/22.
*/
@FunctionRecorder
public class SpecificDashboardStyleComponent extends Component {
public static final SpecificDashboardStyleComponent KEY = new SpecificDashboardStyleComponent();
private SpecificDashboardStyleComponent() {
}
@Override
public ScriptPath script() {
return ScriptPath.build("com/finebi/plugin/web/specific_style.js");
}
@Override
public StylePath style() {
return StylePath.build("com/finebi/plugin/web/specific_style.css", ParserType.DYNAMIC);
}
}