Skip to content

Commit

Permalink
Minor fixes to LinkHeader css
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianKirmaier committed Jan 4, 2025
1 parent 60cd283 commit e0d7802
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,7 @@ To run the examples, you can use the following commands:
./gradlew jpro-routing:example:jproRun -Psample=colors
./gradlew jpro-routing:example:jproRun -Psample=popup
./gradlew jpro-routing:example:jproRun -Psample=test
./gradlew jpro-routing:example:jproRun -Psample=extensions
./gradlew jpro-webrtc:example:jproRun
./gradlew jpro-sipjs:example:jproRun
```
Expand Down
3 changes: 2 additions & 1 deletion jpro-routing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ configure(project(':jpro-routing:example')) {
def examples = [
'colors': 'example.colors.ColorsApp',
'popup' : 'example.popup.PopupApp',
'test' : 'example.scala.TestWebApplication'
'test' : 'example.scala.TestWebApplication',
'extensions': 'example.scala.TestExtensions'
]
mainClassName = project.hasProperty("sample") ? examples[project.getProperties().get("sample")] : examples["colors"]

Expand Down
2 changes: 2 additions & 0 deletions jpro-routing/core/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@
exports one.jpro.platform.routing.sessionmanager;
exports one.jpro.platform.routing.extensions.linkheader;
exports one.jpro.platform.routing.server;

opens one.jpro.platform.routing.extensions.linkheader.css;
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import one.jpro.platform.routing.filter.container.ContainerFactory
import one.jpro.platform.routing.sessionmanager.SessionManager

class TestExtensionsApp(stage: Stage) extends RouteNode(stage) {
stylesheets <++ "/com/jpro/routing/extensions/linkheader/css/linkheader.css"
stylesheets <++ "/one/jpro/platform/routing/extensions/linkheader/css/linkheader.css"

setRoute(
Route.empty() /* StartRoute? */
Expand Down

0 comments on commit e0d7802

Please sign in to comment.