-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from kadampabookings/staging
July work
- Loading branch information
Showing
16 changed files
with
353 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,6 @@ | |
</repository> | ||
</repositories> | ||
|
||
|
||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,6 @@ | |
|
||
<artifactId>webfx-kit-javafxgraphics-fat-j2cl</artifactId> | ||
|
||
|
||
<build> | ||
<plugins> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...in/java/dev/webfx/kit/mapper/peers/javafxgraphics/gwtj2cl/html/HtmlBrowserRegionPeer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package dev.webfx.kit.mapper.peers.javafxgraphics.gwtj2cl.html; | ||
|
||
import dev.webfx.kit.mapper.peers.javafxgraphics.HasNoChildrenPeers; | ||
import dev.webfx.kit.mapper.peers.javafxgraphics.base.RegionPeerBase; | ||
import dev.webfx.kit.mapper.peers.javafxgraphics.base.RegionPeerMixin; | ||
import dev.webfx.kit.mapper.peers.javafxgraphics.gwtj2cl.html.layoutmeasurable.HtmlLayoutMeasurable; | ||
import dev.webfx.kit.mapper.peers.javafxgraphics.gwtj2cl.util.HtmlUtil; | ||
import javafx.scene.layout.Region; | ||
|
||
/** | ||
* @author Bruno Salmon | ||
*/ | ||
public final class HtmlBrowserRegionPeer | ||
<N extends Region, NB extends RegionPeerBase<N, NB, NM>, NM extends RegionPeerMixin<N, NB, NM>> | ||
|
||
extends HtmlRegionPeer<N, NB, NM> implements HtmlLayoutMeasurable, HasNoChildrenPeers { | ||
|
||
public HtmlBrowserRegionPeer(String tagName) { | ||
super((NB) new RegionPeerBase(), HtmlUtil.createElement(tagName)); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.