Skip to content
Snippets Groups Projects
Commit 09e46810 authored by pkupczyk's avatar pkupczyk
Browse files

SP-352 / BIS-236 : Provide Feedback to end user when doing an (Custom) Upload

SVN: 27413
parent 90e6cdbf
No related branches found
No related tags found
No related merge requests found
...@@ -90,21 +90,22 @@ public final class InfoBox extends Html implements IInfoHandler ...@@ -90,21 +90,22 @@ public final class InfoBox extends Html implements IInfoHandler
timer = new Timer() timer = new Timer()
{ {
String dots = ""; String dots;
@Override @Override
public void run() public void run()
{ {
if (dots.length() < 5) if (dots != null && dots.length() < 6)
{ {
dots += "."; dots += ".";
} else } else
{ {
dots = ""; dots = "...";
} }
setHtml(text + dots); setHtml(text + dots);
} }
}; };
timer.run();
timer.scheduleRepeating(500); timer.scheduleRepeating(500);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment