c164b90a57d002000abbdd86537a9d4270d43b37
java/com.sap.sailing.gwt.ui/pom.xml
| ... | ... | @@ -70,6 +70,12 @@ |
| 70 | 70 | </dependency> |
| 71 | 71 | <dependency> |
| 72 | 72 | <groupId>com.sap.sailing</groupId> |
| 73 | + <artifactId>com.sap.sse.branding</artifactId> |
|
| 74 | + <version>${project.version}</version> |
|
| 75 | + <classifier>sources</classifier> |
|
| 76 | + </dependency> |
|
| 77 | + <dependency> |
|
| 78 | + <groupId>com.sap.sailing</groupId> |
|
| 73 | 79 | <artifactId>com.sap.sse.gwt</artifactId> |
| 74 | 80 | <version>${project.version}</version> |
| 75 | 81 | <classifier>sources</classifier> |
java/com.sap.sailing.gwt.ui/src/main/java/com/sap/sailing/gwt/home/HomeBase.gwt.xml
| ... | ... | @@ -8,6 +8,7 @@ |
| 8 | 8 | <!-- Other module inherits --> |
| 9 | 9 | |
| 10 | 10 | <inherits name="com.sap.sse.gwt.SSESharedGWT" /> |
| 11 | + <inherits name="com.sap.sse.branding.SSEBranding" /> |
|
| 11 | 12 | <inherits name="com.sap.sse.SSECommon" /> |
| 12 | 13 | <inherits name="com.sap.sailing.domain.SailingDomain" /> |
| 13 | 14 | <inherits name="com.sap.sailing.landscape.LandscapeCommon" /> |
java/com.sap.sailing.gwt.ui/src/main/java/com/sap/sailing/gwt/home/desktop/places/solutions/SolutionsClientFactory.java
| ... | ... | @@ -7,5 +7,4 @@ import com.sap.sailing.gwt.ui.client.SailingServiceAsync; |
| 7 | 7 | public interface SolutionsClientFactory extends SailingClientFactory { |
| 8 | 8 | SolutionsView createSolutionsView(SolutionsNavigationTabs navigationTab); |
| 9 | 9 | SailingServiceAsync getSailingService(); |
| 10 | - |
|
| 11 | 10 | } |
java/com.sap.sailing.gwt.ui/src/main/java/com/sap/sailing/gwt/home/mobile/partials/footer/Footer.java
| ... | ... | @@ -87,12 +87,11 @@ public class Footer extends Composite { |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | private static boolean hideIfBlank(DivElement el, String text) { |
| 90 | - boolean flag = false; |
|
| 91 | - if (!Util.hasLength(text)) { |
|
| 90 | + final boolean hidden = !Util.hasLength(text); |
|
| 91 | + if (hidden) { |
|
| 92 | 92 | el.getStyle().setDisplay(Display.NONE); |
| 93 | - flag = true; |
|
| 94 | 93 | } |
| 95 | - return flag; |
|
| 94 | + return hidden; |
|
| 96 | 95 | } |
| 97 | 96 | |
| 98 | 97 | private static void setHrefOrHide(AnchorElement el, String url) { |
| ... | ... | @@ -102,5 +101,4 @@ public class Footer extends Composite { |
| 102 | 101 | el.setHref(url); |
| 103 | 102 | } |
| 104 | 103 | } |
| 105 | - |
|
| 106 | 104 | } |
| ... | ... | \ No newline at end of file |
java/com.sap.sailing.gwt.ui/src/main/resources/com/sap/sailing/gwt/ui/RaceBoard.gwt.xml
| ... | ... | @@ -6,9 +6,10 @@ |
| 6 | 6 | <!-- Other module inherits --> |
| 7 | 7 | <inherits name="com.sap.sse.gwt.SSESharedGWT" /> |
| 8 | 8 | <inherits name="com.sap.sse.SSECommon" /> |
| 9 | + <inherits name="com.sap.sse.branding.SSEBranding" /> |
|
| 9 | 10 | <inherits name="com.sap.sailing.domain.SailingDomain" /> |
| 10 | 11 | <inherits name="com.sap.sse.gwt.AdminConsole" /> |
| 11 | - <inherits name="com.sap.sailing.landscape.Landscape" /> |
|
| 12 | + <inherits name="com.sap.sailing.landscape.Landscape" /> |
|
| 12 | 13 | <inherits name="com.sap.sse.security.ui.LoginPanel" /> |
| 13 | 14 | <!-- Google Maps API --> |
| 14 | 15 | <inherits name='com.google.gwt.ajaxloader.AjaxLoader' /> |