@ives_xxz/framework 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -126,7 +126,7 @@ export abstract class FWLayerController
|
|
|
126
126
|
eventName: eventName || cc.Node.EventType.TOUCH_END,
|
|
127
127
|
cb: cb,
|
|
128
128
|
target: target,
|
|
129
|
-
responseInterval: responseInterval,
|
|
129
|
+
responseInterval: responseInterval || this.defaultResponseInterval,
|
|
130
130
|
},
|
|
131
131
|
],
|
|
132
132
|
});
|
|
@@ -146,7 +146,7 @@ export abstract class FWLayerController
|
|
|
146
146
|
{
|
|
147
147
|
eventName: eventName,
|
|
148
148
|
cb: cb,
|
|
149
|
-
responseInterval: responseInterval
|
|
149
|
+
responseInterval: responseInterval || this.defaultResponseInterval,
|
|
150
150
|
},
|
|
151
151
|
],
|
|
152
152
|
});
|