Skip to content

Commit cb97f49

Browse files
committed
Interaction: Remove unnecessary quotes
1 parent 1398b09 commit cb97f49

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ui/jquery.ui.interaction.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ $.widget( "ui.interaction", {
8282

8383
setup: function( widget, start ) {
8484
widget._on( widget.widget(), {
85-
"pointerdown": function( event ) {
85+
pointerdown: function( event ) {
8686
event = event.originalEvent;
8787
if ( this.id ) {
8888
return;
@@ -144,9 +144,9 @@ $.widget( "ui.interaction", {
144144
}
145145

146146
widget._on( widget.document, {
147-
"pointermove": moveHandler,
148-
"pointerup": stopHandler,
149-
"pointercancel": stopHandler
147+
pointermove: moveHandler,
148+
pointerup: stopHandler,
149+
pointercancel: stopHandler
150150
});
151151
}
152152
});

0 commit comments

Comments
 (0)