Skip to content

Commit

Permalink
Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Renaud Lancelot committed Sep 21, 2016
1 parent 4b7dfff commit 07fb636
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import org.genericsystem.reactor.appserver.Script;
import org.genericsystem.reactor.gs.FlexDirection;
import org.genericsystem.reactor.gs.GSApp;
import org.genericsystem.reactor.gs.GSDiv;
import org.genericsystem.reactor.gs.GSEditor;
import org.genericsystem.reactor.gs.GSHeader;
import org.genericsystem.reactor.gs.GSLogo;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public void addHttpHandler(HttpServer httpServer) {
String indexHtml = "<!DOCTYPE html>";
indexHtml += "<html>";
indexHtml += "<head>";
indexHtml += "<meta charset=\"UTF-8\">";
indexHtml += "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">";
indexHtml += "<LINK rel=stylesheet type=\"text/css\" href=\"" + (appPath.isEmpty() ? "" : ("/" + appPath)) + "/" + application.getApplicationClass().getSimpleName().toLowerCase() + ".css\"/>";
indexHtml += "<script>";
indexHtml += "var serviceLocation = \"ws://\" + document.location.host + \"" + request.path() + "\";";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public GSResponsive(Tag parent, FlexDirection direction, UnaryOperator<Tag>... c
tag.addStyle("padding", "10px");
tag.addStyle("border-radius", "10px");
tag.addStyle("background-color", "white");
tag.addStyle("min-width", "10cm");
}
}
};
Expand Down

0 comments on commit 07fb636

Please sign in to comment.