Defect #1331
Font pusher not called in webclient
0%
Description
Could you change the line 1194 of VelocityReportProvider.Java to also be called in webclient?
public boolean js_installFonts(final Function function) {
if (application.getApplicationType() == IClientPluginAccess.CLIENT) {
if (getService() != null) {
final FunctionDefinition callback = (function != null) ? new FunctionDefinition(function) : null;
final FontPusher pusher = new FontPusher(callback);
application.getExecutor().execute(pusher);
return true;
}
}
return false;
}
History
Updated by Patrick Talbot almost 7 years ago
- Assignee set to Sanneke Aleman
This would mean that the fonts are pushed on the server side, which I think is not really needed/wanted, as you can always install fonts on a server you manage anyway?