template-carousel-mobile/0101-on.mouse_wheel_move

13 lines
264 B
Plaintext

on.mouse_wheel_move = function(dx,dy)
if Show_code then
-- nothing yet
else
-- editors hidden
if car.mouse_wheel_move then
call_protected(car.mouse_wheel_move, dx,dy)
end
if car.wheelmoved then
call_protected(car.wheelmoved, dx,dy)
end
end
end