added title to links
This commit is contained in:
@@ -348,7 +348,9 @@ public abstract class BaseClass implements Constants{
|
||||
}
|
||||
|
||||
public Tag link(String tagClass,Object caption,Map<String,String> additionalProps) {
|
||||
return link(tagClass,caption.toString(),props(additionalProps));
|
||||
Tag link = link(tagClass,caption.toString(),props(additionalProps));
|
||||
if (isSet(notes) && !notes.isEmpty()) link.title(notes);
|
||||
return link;
|
||||
}
|
||||
|
||||
public static Tag link(String tagClass,String caption,Map<String,String> props) {
|
||||
|
||||
@@ -107,7 +107,7 @@ public class Route extends BaseClass {
|
||||
timeStep = brakeTimes.get(brakeId);
|
||||
// if no brake time is available for this train, use the fastest brake time already known for this route:
|
||||
if (isNull(timeStep)) timeStep = 100;
|
||||
start();
|
||||
Application.threadPool.execute(this);
|
||||
}
|
||||
|
||||
public void abort() {
|
||||
|
||||
Reference in New Issue
Block a user