mirror of
https://github.com/2OOP/pism.git
synced 2026-02-04 02:44:50 +00:00
Alpha UI update (#95)
* added localization options //todo add all the strings * broken push * merge to UI * broken push * Alpha rebase complete, added asset loader for UI branch * merge to UI * UI now uses assetmanager * added NL and EN for all strings currently in UI * fix small merge error --------- Co-authored-by: Ticho Hidding <tichohidding@gmail.com> Co-authored-by: ramollia <@>
This commit is contained in:
committed by
GitHub
parent
2f9b155e6e
commit
9b17a4ba7f
@@ -0,0 +1,17 @@
|
||||
package org.toop.framework.asset.resources;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
@FileExtension({"css"})
|
||||
public class CssAsset extends BaseResource {
|
||||
private final String url;
|
||||
|
||||
public CssAsset(File file) {
|
||||
super(file);
|
||||
this.url = file.toURI().toString();
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user