Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ JQueryUIWebInteractionInterpreterTest >> testAcceptContainerDialog [

| interpreter html |

interpreter := EventInterpreterDispatcher defaultingToClick trigger.
interpreter := SingleEventInterpreterDispatcher defaultingToClick trigger.
interpreter acceptContainerDialog.
html := self
apply: interpreter
Expand Down Expand Up @@ -69,7 +69,7 @@ JQueryUIWebInteractionInterpreterTest >> testToggleCssClassOnComponentsWithClass

| interpreter html |

interpreter := EventInterpreterDispatcher defaultingToClick trigger.
interpreter := SingleEventInterpreterDispatcher defaultingToClick trigger.
interpreter
updateCssClasses: [ :element | element toggleClass: Classification >> #loading withEffect: #bounce ]
onElementsMatching: [ :canvas | canvas jQuery class: Classification >> #willow ].
Expand Down
4 changes: 2 additions & 2 deletions source/Willow-JQueryUI/JQueryUIButtonSetWebView.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ https://api.jqueryui.com/buttonset/
"
Class {
#name : #JQueryUIButtonSetWebView,
#superclass : #SingleSelectionWebViewBehavior,
#superclass : #AbstractSingleSelectionWebView,
#instVars : [
'commandToComponent',
'interactionInterpreter',
Expand All @@ -26,7 +26,7 @@ JQueryUIButtonSetWebView >> initializeApplying: aCommandToComponent obtainingCom

commandToComponent := aCommandToComponent.
elementCommandProvider := aLabelCommandProvider.
interactionInterpreter := EventInterpreterDispatcher defaultingToChange
interactionInterpreter := SingleEventInterpreterDispatcher defaultingToChange
]

{ #category : #configuring }
Expand Down
2 changes: 1 addition & 1 deletion source/Willow-JQueryUI/JQueryUIDialogWebView.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ JQueryUIDialogWebView >> initializeCommandToComponentWith: aCommand [
{ #category : #initialization }
JQueryUIDialogWebView >> initializeInteractionInterpreter [

interactionInterpreter := EventInterpreterDispatcher
interactionInterpreter := SingleEventInterpreterDispatcher
interpretingByDefault: 'add'
configuring: ( WebInteractionInterpreter forEvaluationOf: #add: withAll: #() )
]
Expand Down