File tree 4 files changed +16
-2
lines changed
Seaside-Core.package/WAMetaElement.class/instance
Seaside-HotwireTurbo-Core.package/WATurboRenderPhaseContinuation.class/instance
Seaside-HotwireTurbo-Examples.package
WATurboMultiCounter.class/class
4 files changed +16
-2
lines changed Original file line number Diff line number Diff line change
1
+ attributes
2
+ turboPrefetch: aString
3
+ " Prefetching links is enabled by default since Turbo v8,
4
+ but you can disable it by adding this meta tag to your page with value false."
5
+
6
+ self name: ' turbo-prefetch' .
7
+ self content: aString
Original file line number Diff line number Diff line change
1
+ updating
2
+ updateRoot: aRoot
3
+
4
+ super updateRoot: aRoot.
5
+ aRoot meta turboPrefetch: ' false'
Original file line number Diff line number Diff line change 3
3
4
4
(WAAdmin register: self asApplicationAt: ' /examples/turbo/multicounter' )
5
5
addLibrary: JQDevelopmentLibrary ;
6
- preferenceAt: #actionPhaseContinuationClass put: WATurboCallbackProcessingActionContinuation
6
+ preferenceAt: #actionPhaseContinuationClass put: WATurboCallbackProcessingActionContinuation ;
7
+ preferenceAt: #renderPhaseContinuationClass put: WATurboRenderPhaseContinuation
Original file line number Diff line number Diff line change 4
4
(WAAdmin register: self asApplicationAt: ' /examples/turbo/todo' )
5
5
exceptionHandler: WADebugErrorHandler ;
6
6
addLibrary: WAExamplesLibrary ;
7
- preferenceAt: #actionPhaseContinuationClass put: WATurboCallbackProcessingActionContinuation
7
+ preferenceAt: #actionPhaseContinuationClass put: WATurboCallbackProcessingActionContinuation ;
8
+ preferenceAt: #renderPhaseContinuationClass put: WATurboRenderPhaseContinuation
You can’t perform that action at this time.
0 commit comments